Skip to content

Commit

Permalink
Update validation test counties count
Browse files Browse the repository at this point in the history
  • Loading branch information
bendnorman committed Feb 5, 2024
1 parent a16f4db commit 3a06c67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dbcp/validation/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ def test_county_wide_coverage(engine: Engine):
), "counties_wide_format does not contain all counties"
notnull = df.notnull()
assert (
notnull.any(axis=1).sum() == 2380
), "counties_wide_format has unexpected county coverage"
notnull.any(axis=1).sum() == 2374
), f"counties_wide_format has unexpected county coverage: {notnull[notnull.any(axis=1)]}"


def test_county_long_vs_wide(engine: Engine):
Expand Down

0 comments on commit 3a06c67

Please sign in to comment.