aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-06-26 20:30:25 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-06-26 20:30:25 +0200
commit69bf3fb4d2017639d5b0b01c1a5ba6e2dd31274f (patch)
treecf346a9c10545fd67ddb5cec61a16aff5d953921
parent1dc2ea374c4595cfcb550e3519278dab57b54be2 (diff)
More test cases
-rw-r--r--ber/string_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/ber/string_test.go b/ber/string_test.go
index 72c3a2a..c783918 100644
--- a/ber/string_test.go
+++ b/ber/string_test.go
@@ -19,4 +19,5 @@ func testString(t *testing.T, s string, e []byte) {
func TestString(t *testing.T) {
testString(t, "111", []byte{0x31, 0x31, 0x31})
+ testString(t, "0A16", []byte{0x30, 0x41, 0x31, 0x36})
}