Skip to content

Commit

Permalink
Fixing 4 typos in comments and gofmt -s in all files
Browse files Browse the repository at this point in the history
  • Loading branch information
d6o committed Feb 10, 2017
1 parent adf9b80 commit 2cd7ace
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
6 changes: 3 additions & 3 deletions update_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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")
}
}

Expand Down Expand Up @@ -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")
}
}

Expand Down
2 changes: 1 addition & 1 deletion utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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, "?")
}

Expand Down

0 comments on commit 2cd7ace

Please sign in to comment.