Procházet zdrojové kódy

fix error message for TestManualQueryPaging

Chris Bannister před 10 roky
rodič
revize
f8275179e7
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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)
 	}
 }