Explorar el Código

fix error message for TestManualQueryPaging

Chris Bannister hace 10 años
padre
commit
f8275179e7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      cassandra_test.go

+ 1 - 1
cassandra_test.go

@@ -1974,7 +1974,7 @@ func TestManualQueryPaging(t *testing.T) {
 	}
 
 	if fetched != rowsToInsert {
-		t.Fatalf("expected to fetch %d rows got %d", fetched, rowsToInsert)
+		t.Fatalf("expected to fetch %d rows got %d", rowsToInsert, fetched)
 	}
 }