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 1bfa8b1 commit f34a331Copy full SHA for f34a331
python/tests/test_dataframe.py
@@ -1367,9 +1367,9 @@ def test_min_table_rows_display(ctx):
1367
row_count = html_output.count("<tr>") - 1 # subtract 1 for the header row
1368
1369
# Verify at least min_table_rows rows are displayed
1370
- assert (
1371
- row_count >= custom_min_rows
1372
- ), f"Expected at least {custom_min_rows} rows, got {row_count}"
+ assert row_count >= custom_min_rows, (
+ f"Expected at least {custom_min_rows} rows, got {row_count}"
+ )
1373
1374
# If data was truncated, "Data truncated" message should be present
1375
if row_count < rows:
0 commit comments