From df34931ab31f1c35f6f4bf91a4e9c63dcc32dab9 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Thu, 22 Feb 2018 15:28:21 +0100 Subject: [PATCH] fix log test --- common/log/log_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/log/log_test.go b/common/log/log_test.go index f4ee096c8..3555e5cc5 100644 --- a/common/log/log_test.go +++ b/common/log/log_test.go @@ -28,5 +28,5 @@ func TestLogRecord(t *testing.T) { Content: net.ParseAddress(ip), }) - assert(logger.value, Equals, "[Error]: "+ip) + assert(logger.value, Equals, "[Error] "+ip) }