From abf4647f0d111a4cfb83e90a1e9326b8203ea8b4 Mon Sep 17 00:00:00 2001 From: Victor Quinn Date: Wed, 15 Feb 2017 19:03:27 -0500 Subject: [PATCH] Fix misspellings --- decimal_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/decimal_test.go b/decimal_test.go index c08d3fd..36bd7bf 100644 --- a/decimal_test.go +++ b/decimal_test.go @@ -1405,7 +1405,7 @@ func TestNullDecimal_Scan(t *testing.T) { t.Errorf("a.Scan(54.33) failed with message: %s", err) } else { - // Scan suceeded... test resulting values + // Scan succeeded... test resulting values if !a.Valid { t.Errorf("%s is null", a.Decimal) } else if !a.Decimal.Equals(expected) { @@ -1424,7 +1424,7 @@ func TestNullDecimal_Scan(t *testing.T) { t.Errorf("a.Scan(0) failed with message: %s", err) } else { - // Scan suceeded... test resulting values + // Scan succeeded... test resulting values if !a.Valid { t.Errorf("%s is null", a.Decimal) } else if !a.Decimal.Equals(expected) { @@ -1447,7 +1447,7 @@ func TestNullDecimal_Scan(t *testing.T) { t.Errorf("a.Scan('535.666') failed with message: %s", err) } else { - // Scan suceeded... test resulting values + // Scan succeeded... test resulting values if !a.Valid { t.Errorf("%s is null", a.Decimal) } else if !a.Decimal.Equals(expected) { @@ -1466,7 +1466,7 @@ func TestNullDecimal_Scan(t *testing.T) { // Scan failed... no need to test result value t.Errorf("a.Scan('535.666') failed with message: %s", err) } else { - // Scan suceeded... test resulting values + // Scan succeeded... test resulting values if !a.Valid { t.Errorf("%s is null", a.Decimal) } else if !a.Decimal.Equals(expected) {