Skip to content

Commit

Permalink
Merge pull request jmoiron#458 from asheikm/master
Browse files Browse the repository at this point in the history
spelling fix
  • Loading branch information
jmoiron authored Oct 16, 2018
2 parents 2bf7a4f + 88d9b3d commit b3e709f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sqlx_context_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ func TestUsageContext(t *testing.T) {
person := &Person{}
err = db.GetContext(ctx, person, "SELECT * FROM person WHERE first_name=$1", "does-not-exist")
if err == nil {
t.Fatal("Should have got an error for Get on non-existant row.")
t.Fatal("Should have got an error for Get on non-existent row.")
}

// lets test prepared statements some more
Expand Down
2 changes: 1 addition & 1 deletion sqlx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,7 @@ func TestUsage(t *testing.T) {
person := &Person{}
err = db.Get(person, "SELECT * FROM person WHERE first_name=$1", "does-not-exist")
if err == nil {
t.Fatal("Should have got an error for Get on non-existant row.")
t.Fatal("Should have got an error for Get on non-existent row.")
}

// lets test prepared statements some more
Expand Down

0 comments on commit b3e709f

Please sign in to comment.