Skip to content

Commit

Permalink
Fix fatalf formatting
Browse files Browse the repository at this point in the history
Fix using fatal instead of fatalf. Fixes apache#128
  • Loading branch information
Zariel committed Mar 13, 2014
1 parent 8c74b3c commit edfeb90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cassandra_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ func TestCreateSessionTimeout(t *testing.T) {
t.Fatal("expected ErrNoConncetions, but no error was returned.")
}
if err != ErrNoConnections {
t.Fatal("expected ErrNoConnections, but received %v", err)
t.Fatalf("expected ErrNoConnections, but received %v", err)
}
}

Expand Down

0 comments on commit edfeb90

Please sign in to comment.