Skip to content

Commit

Permalink
Adjust expected number of aggregations in test case; the value previo…
Browse files Browse the repository at this point in the history
…usly used (7) is not correct.
  • Loading branch information
Raymond Wiker committed Oct 16, 2024
1 parent b2b9609 commit 6d1c119
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_explorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,14 +196,14 @@ def test_case_surfaces_type(test_case: Case):

def test_case_surfaces_size(test_case: Case):
"""Test that Case.surfaces has the correct size"""
assert len(test_case.surfaces) == 219
assert len(test_case.surfaces) == 271


def test_case_surfaces_filter(test_case: Case):
"""Test that Case.surfaces has the correct size"""
# filter on iteration stage
agg_surfs = test_case.surfaces.filter(stage="iteration")
assert len(agg_surfs) == 7
assert len(agg_surfs) == 59

agg_surfs = test_case.surfaces.filter(aggregation=True)
assert len(agg_surfs)
Expand Down

0 comments on commit 6d1c119

Please sign in to comment.