Skip to content

Commit e0713e0

Browse files
committed
fix another test
1 parent a66a559 commit e0713e0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/integration_tests/cloud/test_cloud_sql_reads.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,11 @@ def test_read_from_previous_job(
195195

196196
pandas_df = pd.DataFrame(data_as_list)
197197

198-
assert pandas_df.shape == (100, 20)
198+
assert pandas_df.shape[0] == 100
199+
assert pandas_df.shape[1] in { # Column count diff depending on when it was created
200+
20,
201+
21,
202+
}
199203
for col in pandas_df.columns:
200204
# Check that no values are null
201205
assert pandas_df[col].notnull().all()

0 commit comments

Comments
 (0)