We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bea592c commit b9b8692Copy full SHA for b9b8692
tests/system/small/test_session.py
@@ -122,7 +122,7 @@ def test_read_gbq_tokyo(
122
assert exec_result.query_job is not None
123
assert exec_result.query_job.location == tokyo_location
124
125
- assert len(expected) == exec_result.total_rows
+ assert len(expected) == exec_result.batches().approx_total_rows
126
127
128
@pytest.mark.parametrize(
@@ -951,7 +951,7 @@ def test_read_pandas_tokyo(
951
assert result.query_job is not None
952
assert result.query_job.location == tokyo_location
953
954
- assert len(expected) == result.total_rows
+ assert len(expected) == result.batches().approx_total_rows
955
956
957
@all_write_engines
0 commit comments