Browse Source

Fixing expected value for TestRebindQueryInfo when q.Bind(24). (#1075)

Matheus Lin Truglio Alvarenga 7 years ago
parent
commit
2c8c099c25
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cassandra_test.go

+ 1 - 1
cassandra_test.go

@@ -1139,7 +1139,7 @@ func TestRebindQueryInfo(t *testing.T) {
 	}
 
 	if value != "w00t" {
-		t.Fatalf("expected %v but got %v", "quux", value)
+		t.Fatalf("expected %v but got %v", "w00t", value)
 	}
 }