From 084ebbcc6eb5f86f4d0dec93a06b42de757b84d5 Mon Sep 17 00:00:00 2001 From: Junwei Zhao Date: Fri, 14 Feb 2020 14:52:10 +1100 Subject: [PATCH] fix the build --- spike/a_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spike/a_test.go b/spike/a_test.go index 5e38966..b671664 100644 --- a/spike/a_test.go +++ b/spike/a_test.go @@ -14,5 +14,5 @@ func A_Test(t *testing.T) { } func Test(t *testing.T) { - assert.Nil(t, 123, "It Should not be nil") + assert.NotNil(t, 123, "It Should not be nil") }