From bd72aa305d634a8a4a4e7f9a2bde741c21249230 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Thu, 26 Oct 2017 15:18:07 +0900 Subject: [PATCH] fix test --- status_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/status_test.go b/status_test.go index 5240671..d01531f 100644 --- a/status_test.go +++ b/status_test.go @@ -71,10 +71,10 @@ func TestGetStatus(t *testing.T) { t.Fatalf("want %q but %q", "💩", status.Emojis[0]) } if status.Emojis[0].URL != "http://example.com" { - t.Fatalf("want %q but %q", "https://example.com", static.Emojis[0].URL) + t.Fatalf("want %q but %q", "https://example.com", status.Emojis[0].URL) } if status.Emojis[0].StaticURL != "http://example.com/static" { - t.Fatalf("want %q but %q", "https://example.com/static", static.Emojis[0].URL) + t.Fatalf("want %q but %q", "https://example.com/static", status.Emojis[0].StaticURL) } }