aboutsummaryrefslogtreecommitdiff
path: root/ber/int_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ber/int_test.go')
-rw-r--r--ber/int_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ber/int_test.go b/ber/int_test.go
index 03139c1..9a015c5 100644
--- a/ber/int_test.go
+++ b/ber/int_test.go
@@ -5,7 +5,7 @@ import (
"testing"
)
-func testInt(t *testing.T, i int, b []byte) {
+func testInt(t *testing.T, i int64, b []byte) {
a := marshalInt(i)
if !bytes.Equal(a, b) {
t.Error("BER", i, "expected", b, "got", a)