diff options
| author | Shulhan <ms@kilabit.info> | 2018-05-12 19:05:37 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2018-05-12 19:05:37 +0700 |
| commit | ca1e4207c19503a9734d363a61bfaedb8d3bd7e3 (patch) | |
| tree | 639ba1f9166dd05f167d259d8366504505f0d824 /lib | |
| parent | abe193f567387a1d4e65f0b9be82d4fc69d90cf1 (diff) | |
| download | pakakeh.go-ca1e4207c19503a9734d363a61bfaedb8d3bd7e3.tar.xz | |
[test] lib/test: fix missing parameter on Assert
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/test/test_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test/test_test.go b/lib/test/test_test.go index 22937a12..c4f2f2a9 100644 --- a/lib/test/test_test.go +++ b/lib/test/test_test.go @@ -26,6 +26,6 @@ func TestAssert(t *testing.T) { for _, c := range cases { t.Log(c.desc) - Assert(t, c.exp, c.in, c.expEqual) + Assert(t, "interface{}", c.exp, c.in, c.expEqual) } } |
