Browse Source

fix error message for TestManualQueryPaging

Chris Bannister 10 years ago
parent
commit
f8275179e7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cassandra_test.go

+ 1 - 1
cassandra_test.go

@@ -1974,7 +1974,7 @@ func TestManualQueryPaging(t *testing.T) {
 	}
 	}
 
 
 	if fetched != rowsToInsert {
 	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)
 	}
 	}
 }
 }