Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bart0003 committed Feb 8, 2024
1 parent 7722af1 commit 6161750
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_valid_types_true(self):
"messageName": "OOO",
"1": 123,
"2": "str"
}, headers=[('test_header', b'result')], validators=[validator_types])
}, headers=[('test_header', b'result')], validators=[types_validator])
self.assertTrue(message.validate())

def test_valid_false(self):
Expand All @@ -66,5 +66,5 @@ def test_valid_types_false(self):
"messageName": "OOO",
"1": {},
"2": []
}, headers=[('test_header', b'result')], validators=[validator_types])
}, headers=[('test_header', b'result')], validators=[types_validator])
self.assertFalse(message.validate())

0 comments on commit 6161750

Please sign in to comment.