Skip to content

Commit

Permalink
Fix Errorf string formatting verb
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnps authored May 22, 2017
1 parent 05df489 commit 9b7fa39
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 @@ -1727,7 +1727,7 @@ func TestGetTableMetadata(t *testing.T) {
t.Errorf("Expected table name to be set, but it was empty: index=%d metadata=%+v", i, table)
}
if table.Keyspace != "gocql_test" {
t.Errorf("Expected keyspace for '%d' table metadata to be 'gocql_test' but was '%s'", table.Name, table.Keyspace)
t.Errorf("Expected keyspace for '%s' table metadata to be 'gocql_test' but was '%s'", table.Name, table.Keyspace)
}
if *flagProto < 4 {
// TODO(zariel): there has to be a better way to detect what metadata version
Expand Down

0 comments on commit 9b7fa39

Please sign in to comment.