Skip to content

Commit 4b4945f

Browse files
rich-iannoneclaude
andcommitted
Apply ruff-format to test__utils.py
Collapse the _count_validation_units() call onto a single line to satisfy the ruff-format pre-commit hook in CI. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent eedc5e5 commit 4b4945f

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/test__utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -386,9 +386,7 @@ def test_count_validation_units_with_nulls():
386386
# A LazyFrame and an eager DataFrame should yield identical counts; Null values are excluded
387387
# from both the pass and fail counts and surfaced separately
388388
for native in (df, df.lazy()):
389-
n, n_passed, n_failed, n_null = _count_validation_units(
390-
tbl=native, column="pb_is_good_"
391-
)
389+
n, n_passed, n_failed, n_null = _count_validation_units(tbl=native, column="pb_is_good_")
392390
assert (n, n_passed, n_failed, n_null) == (5, 2, 1, 2)
393391

394392

0 commit comments

Comments
 (0)