Skip to content

Commit

Permalink
Fix valid range test after changes in #1053
Browse files Browse the repository at this point in the history
  • Loading branch information
benjwadams committed Apr 15, 2024
1 parent 1ef8cc2 commit 6aa0f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compliance_checker/tests/test_cf.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ def test_check_valid_range_or_valid_min_max_present(self):
]

assert result.msgs == expected_msgs
assert result.value[0] == result.value[1]
assert result.value[0] < result.value[1]

def test_check_fill_value_outside_valid_range(self):
"""
Expand Down

0 comments on commit 6aa0f26

Please sign in to comment.