aboutsummaryrefslogtreecommitdiff
path: root/bool_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'bool_test.go')
-rw-r--r--bool_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bool_test.go b/bool_test.go
index afd25ae..3e38a0f 100644
--- a/bool_test.go
+++ b/bool_test.go
@@ -172,9 +172,9 @@ func TestBoolP(t *testing.T) {
t.Error("expected no error, got ", err)
}
if *b != true {
- t.Errorf("expected b=true got b=%s", b)
+ t.Errorf("expected b=true got b=%v", *b)
}
if *c != false {
- t.Errorf("expect c=false got c=%s", c)
+ t.Errorf("expect c=false got c=%v", *c)
}
}