aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-10-06 21:03:30 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-10-06 21:03:30 +0200
commit66c77bd193f6e7d74523d10f49b11f5a12f3322f (patch)
tree98a65635aed7cc76a33e3c3197cd6e4b4f9c50d7
parentbc1c5257f483f298bacf23c5dc2ac91644537be4 (diff)
Add some large int
-rw-r--r--ber/ber_test.go1
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) {