OP-3951 - Hound

This commit is contained in:
Petr Kalis 2023-03-24 11:15:27 +01:00
parent 87fe237aa7
commit f95007b660

View file

@ -124,7 +124,7 @@ class TestValidateSequenceFrames(BaseTest):
with pytest.raises(ValueError) as excinfo:
plugin.process(instance)
assert ("Invalid frame range: (1001, 1002) - expected: (1001, 1003)" in
str(excinfo.value))
str(excinfo.value))
def test_validate_sequence_frames_multi_frame_hole(self, instance, plugin):
representations = [
@ -140,4 +140,5 @@ class TestValidateSequenceFrames(BaseTest):
plugin.process(instance)
assert ("Missing frames: [1002]" in str(excinfo.value))
test_case = TestValidateSequenceFrames()