X-Git-Url: http://www.git.cypherpunks.ru/?p=pyderasn.git;a=blobdiff_plain;f=tests%2Ftest_pyderasn.py;h=3b86d2ceab6371674b4aa7874639e626a24bf4dc;hp=aad0ba335dea8d00d7d94e89c81fe5b09461bdbe;hb=6b0b62f656d1ccecc754c6bffb1fe450291c7419;hpb=8f091a9be95e1581aaee100448660c3a59c6b6d2 diff --git a/tests/test_pyderasn.py b/tests/test_pyderasn.py index aad0ba3..3b86d2c 100644 --- a/tests/test_pyderasn.py +++ b/tests/test_pyderasn.py @@ -6129,7 +6129,10 @@ class TestPP(TestCase): chosen_id = oids[chosen] pp = _pp(asn1_type_name=ObjectIdentifier.asn1_type_name, value=chosen) self.assertNotIn(chosen_id, pp_console_row(pp)) - self.assertIn(chosen_id, pp_console_row(pp, oids=oids)) + self.assertIn( + chosen_id, + pp_console_row(pp, oid_maps=[{'whatever': 'whenever'}, oids]), + ) class TestAutoAddSlots(TestCase):