Parcourir la source

fix error message for TestManualQueryPaging

Chris Bannister il y a 10 ans
Parent
commit
f8275179e7
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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)
 	}
 }