diff options
author | Dimitri Sokolyuk <demon@dim13.org> | 2015-10-06 21:03:30 +0200 |
---|---|---|
committer | Dimitri Sokolyuk <demon@dim13.org> | 2015-10-06 21:03:30 +0200 |
commit | 66c77bd193f6e7d74523d10f49b11f5a12f3322f (patch) | |
tree | 98a65635aed7cc76a33e3c3197cd6e4b4f9c50d7 /ber/ber_test.go | |
parent | bc1c5257f483f298bacf23c5dc2ac91644537be4 (diff) |
Add some large int
Diffstat (limited to 'ber/ber_test.go')
-rw-r--r-- | ber/ber_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ber/ber_test.go b/ber/ber_test.go index 94edbb0..690a8d5 100644 --- a/ber/ber_test.go +++ b/ber/ber_test.go @@ -35,6 +35,7 @@ var intTestData = map[int][]byte{ 8388607: {0x03, 0x7f, 0xff, 0xff}, -8388607: {0x03, 0x80, 0x00, 0x01}, -136: {0x02, 0xff, 0x78}, + 19988489: {0x04, 0x01, 0x31, 0x00, 0x09}, } func TestInt(t *testing.T) { |