Explorar el Código

Fix fatalf formatting

Fix using fatal instead of fatalf. Fixes gocql/gocql#128
Chris Bannister hace 12 años
padre
commit
edfeb907b4
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)
 	}
 }