diff --git a/data/data-pipeline/data_pipeline/tests/score/test_output.py b/data/data-pipeline/data_pipeline/tests/score/test_output.py index 560be486f..f88011bc6 100644 --- a/data/data-pipeline/data_pipeline/tests/score/test_output.py +++ b/data/data-pipeline/data_pipeline/tests/score/test_output.py @@ -31,7 +31,7 @@ pytestmark = pytest.mark.smoketest -UNMATCHED_TRACK_THRESHOLD = 1000 +UNMATCHED_TRACT_THRESHOLD = 1000 def _helper_test_count_exceeding_threshold(df, col, error_check=1000): @@ -289,7 +289,7 @@ def test_data_sources( # Make sure the datasource doesn't have a ton of unmatched tracts, implying it # has moved to 2020 tracts - assert len(df[df.MERGE == "right_only"]) < UNMATCHED_TRACK_THRESHOLD + assert len(df[df.MERGE == "right_only"]) < UNMATCHED_TRACT_THRESHOLD df = df[df.MERGE == "both"]