Skip to content

Commit b907513

Browse files
committed
Fix the expected encoded value for 255
1 parent af677a5 commit b907513

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ber/test_ber.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_false
2727
1 => "\x02\x01\x01",
2828
127 => "\x02\x01\x7F",
2929
128 => "\x02\x02\x00\x80",
30-
255 => "\x02\x01\xFF",
30+
255 => "\x02\x02\x00\xFF",
3131
256 => "\x02\x02\x01\x00",
3232
65535 => "\x02\x02\xFF\xFF",
3333
65536 => "\x02\x03\x01\x00\x00",

0 commit comments

Comments
 (0)