diff options
author | Dimitri Sokolyuk <demon@dim13.org> | 2015-10-05 20:52:59 +0200 |
---|---|---|
committer | Dimitri Sokolyuk <demon@dim13.org> | 2015-10-05 20:52:59 +0200 |
commit | 6c6c2aaac8e0d6c03a46f3f6cb9da9233d9b53cf (patch) | |
tree | d639d7255cdd005a9ec47a92f581464992166623 /ber/ber_test.go | |
parent | f540a7a9e07228520e7a5c1a233ac8fc463138d4 (diff) |
Change universal to private
Diffstat (limited to 'ber/ber_test.go')
-rw-r--r-- | ber/ber_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ber/ber_test.go b/ber/ber_test.go index 46cab4e..696df09 100644 --- a/ber/ber_test.go +++ b/ber/ber_test.go @@ -197,10 +197,10 @@ func TestLen(t *testing.T) { var classTestData = map[Header][]byte{ {classUniversal, kindPrimitive, tagInteger}: {0x02}, - {classUniversal, kindPrimitive, 32}: {0x1f, 0x20}, - {classUniversal, kindPrimitive, 256}: {0x1f, 0x82, 0x00}, {classApplication, kindConstructed, 2}: {0x62}, {classContextSpecific, kindConstructed, 1}: {0xa1}, + {classPrivate, kindPrimitive, 32}: {0xdf, 0x20}, + {classPrivate, kindPrimitive, 256}: {0xdf, 0x82, 0x00}, } func TestClass(t *testing.T) { |