Skip to content

Commit

Permalink
Unbreak FR test suite test__load by comparing data to data
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonhart committed May 11, 2023
1 parent 868464c commit d00ef3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/fr/test_test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ def test__load(fr_test_suites: List[TestSuite], fr_test_cases: List[TestCase]) -
assert loaded_test_suite.description == test_suite_updated.description
assert loaded_test_suite.version == test_suite_updated.version

assert loaded_test_suite.baseline_test_cases == [fr_test_cases[1].data]
assert loaded_test_suite.non_baseline_test_cases == [fr_test_cases[2].data]
assert loaded_test_suite.data.baseline_test_cases == [fr_test_cases[1].data]
assert loaded_test_suite.data.non_baseline_test_cases == [fr_test_cases[2].data]


def test__load__with_version(fr_test_suites: List[TestSuite], fr_test_cases: List[TestCase]) -> None:
Expand Down

0 comments on commit d00ef3b

Please sign in to comment.