aboutsummaryrefslogtreecommitdiff
path: root/ber/class_test.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-06-30 19:15:48 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-06-30 19:15:48 +0200
commit6905df6e3b4f00786311a07f30ad32c9a9de7213 (patch)
treefaaeeb5efefac9a638c544ffaaf19f61955f86e3 /ber/class_test.go
parent50b0ac29b852743325bd9d57b1660f2f90b6d3c4 (diff)
Multi-byte indentifier
Diffstat (limited to 'ber/class_test.go')
-rw-r--r--ber/class_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ber/class_test.go b/ber/class_test.go
index 9b91981..d56cd87 100644
--- a/ber/class_test.go
+++ b/ber/class_test.go
@@ -10,7 +10,7 @@ var berTestData = []byte{
func ExampleIdent() {
for _, test := range berTestData {
- c, k, t := Ident(test)
+ c, k, t, _ := Ident([]byte{test})
if c == Universal {
fmt.Printf("%#x: %v %v %v\n",
test, c, k, t)