Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinL committed May 16, 2024
1 parent 4afc9e2 commit b362b76
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/test_analyse_blocking.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,12 @@ def test_source_dataset_works_as_expected(test_helpers, dialect):
)
# Both of the above use the vertical concat of the two datasets so should
# be equivalent
assert r1 == r2
keys_to_check = [
"number_of_comparisons_generated_pre_filter_conditions",
"number_of_comparisons_to_be_scored_post_filter_conditions",
]
for k in keys_to_check:
assert r1[k] == r2[k]

r1 = count_comparisons_from_blocking_rule(
table_or_tables=df_concat_2,
Expand Down

0 comments on commit b362b76

Please sign in to comment.