Skip to content

Commit

Permalink
Fix to use Errorf
Browse files Browse the repository at this point in the history
  • Loading branch information
willfaught committed Mar 28, 2016
1 parent 1dec220 commit 5d23fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion session_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func TestSessionQuery(t *testing.T) {

var exec = func(q string) {
if err := s.QueryExecute(q); err != nil {
t.Fatalf("Actual error %v, expected no error", err)
t.Errorf("Actual error %v, expected no error", err)
}
}

Expand Down

0 comments on commit 5d23fde

Please sign in to comment.