aboutsummaryrefslogtreecommitdiff
path: root/ber/marshal_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ber/marshal_test.go')
-rw-r--r--ber/marshal_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/ber/marshal_test.go b/ber/marshal_test.go
index da568ed..688c593 100644
--- a/ber/marshal_test.go
+++ b/ber/marshal_test.go
@@ -6,7 +6,6 @@ func TestMarschal(t *testing.T) {
i := 42
b, err := Marshal(i)
if err != nil {
- t.Error(err)
+ t.Error(b, err)
}
- t.Log(b)
}