We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2d147f commit 685a84fCopy full SHA for 685a84f
tests/test_asn1.py
@@ -177,7 +177,7 @@ def test_object_identifier(self):
177
def test_long_object_identifier(self):
178
enc = asn1.Encoder()
179
enc.start()
180
- enc.write('2.60.3', asn1.Numbers.ObjectIdentifier)
+ enc.write('2.1482.3', asn1.Numbers.ObjectIdentifier)
181
res = enc.output()
182
assert res == b'\x06\x03\x8c\x1a\x03'
183
@@ -525,7 +525,7 @@ def test_long_object_identifier(self):
525
buf = b'\x06\x03\x8c\x1a\x03'
526
dec.start(buf)
527
tag, val = dec.read()
528
- assert val == u'2.60.3'
+ assert val == u'2.1482.3'
529
buf = b'\x06\x03\x88\x37\x03'
530
531
0 commit comments