diff options
| author | bogem <[email protected]> | 2016-08-20 12:15:56 +0500 |
|---|---|---|
| committer | bogem <[email protected]> | 2016-08-20 12:15:56 +0500 |
| commit | 6ca95541eb211fa1846ea9319fd3466f489af795 (patch) | |
| tree | 4233b40c6723a4375295ec3f718b6a7bb72f3619 | |
| parent | f676131e2660dc8cd88de99f7486d34aa8172635 (diff) | |
Fix verbs for *bool in bool test
| -rw-r--r-- | bool_test.go | 4 |
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) } } |
