Explorar el Código

Merge pull request #129 from Zariel/fix-fatalf

Fix fatalf formatting
Christoph Hack hace 12 años
padre
commit
0b6b52ec20
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      cassandra_test.go

+ 1 - 1
cassandra_test.go

@@ -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)
 	}
 }