aboutsummaryrefslogtreecommitdiff
path: root/ber/bool_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ber/bool_test.go')
-rw-r--r--ber/bool_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ber/bool_test.go b/ber/bool_test.go
index 7471a33..360c3b9 100644
--- a/ber/bool_test.go
+++ b/ber/bool_test.go
@@ -14,11 +14,11 @@ var boolTestData = []boolTest{
func TestBool(t *testing.T) {
for _, test := range boolTestData {
- a := marshalBool(test.in)
+ a := MarshalBool(test.in)
if a != test.out {
t.Error(test.in, "expected", test.out, "got", a)
}
- n := unmarshalBool(test.out)
+ n := UnmarshalBool(test.out)
if n != test.in {
t.Error(test.out, "expected", test.in, "got", n)
}