From 2cd7acefc34b2003a1d30f1e4297b87c45324f41 Mon Sep 17 00:00:00 2001 From: DiSiqueira Date: Fri, 10 Feb 2017 16:16:38 -0200 Subject: [PATCH] Fixing 4 typos in comments and gofmt -s in all files --- create_test.go | 2 +- update_test.go | 6 +++--- utils.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/create_test.go b/create_test.go index a6d7276b..d67d34fc 100644 --- a/create_test.go +++ b/create_test.go @@ -175,6 +175,6 @@ func TestOmitWithCreate(t *testing.T) { if queryuser.BillingAddressID.Int64 != 0 || queryuser.ShippingAddressId == 0 || queryuser.CreditCard.ID != 0 || len(queryuser.Emails) != 0 { - t.Errorf("Should not create omited relationships") + t.Errorf("Should not create omitted relationships") } } diff --git a/update_test.go b/update_test.go index 3ce64ce3..85d53e5f 100644 --- a/update_test.go +++ b/update_test.go @@ -97,7 +97,7 @@ func TestUpdateWithNoStdPrimaryKeyAndDefaultValues(t *testing.T) { DB.Save(&animal).Update("From", "a nice place") // The name field shoul be untouched DB.First(&animal, animal.Counter) if animal.Name != "galeone" { - t.Errorf("Name fiels shouldn't be changed if untouched, but got %v", animal.Name) + t.Errorf("Name fields shouldn't be changed if untouched, but got %v", animal.Name) } // When changing a field with a default value, the change must occur @@ -300,7 +300,7 @@ func TestOmitWithUpdate(t *testing.T) { queryUser.ShippingAddressId == user.ShippingAddressId || queryUser.CreditCard.ID != user.CreditCard.ID || len(queryUser.Emails) != len(user.Emails) || queryUser.Company.Id != user.Company.Id { - t.Errorf("Should only update relationships that not omited") + t.Errorf("Should only update relationships that not omitted") } } @@ -336,7 +336,7 @@ func TestOmitWithUpdateWithMap(t *testing.T) { queryUser.ShippingAddressId == user.ShippingAddressId || queryUser.CreditCard.ID != user.CreditCard.ID || len(queryUser.Emails) != len(user.Emails) || queryUser.Company.Id != user.Company.Id { - t.Errorf("Should only update relationships not omited") + t.Errorf("Should only update relationships not omitted") } } diff --git a/utils.go b/utils.go index 9ddcc65b..ee663f34 100644 --- a/utils.go +++ b/utils.go @@ -137,7 +137,7 @@ func toQueryMarks(primaryValues [][]interface{}) string { for _, primaryValue := range primaryValues { var marks []string - for _, _ = range primaryValue { + for range primaryValue { marks = append(marks, "?") }