From 520cedea16c3a4c71c2d11ede89c6a50a81ff8db Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Wed, 28 Jun 2017 23:06:45 -0400 Subject: PLT-6909 Remove deleted emojis from cache (#6757) * PLT-6909 Remove deleted emojis from cache * Fixed unit tests --- api4/emoji_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'api4/emoji_test.go') diff --git a/api4/emoji_test.go b/api4/emoji_test.go index 84d808e6d..dcd6dddb7 100644 --- a/api4/emoji_test.go +++ b/api4/emoji_test.go @@ -251,11 +251,11 @@ func TestDeleteEmoji(t *testing.T) { // Try to delete just deleted emoji _, resp = Client.DeleteEmoji(newEmoji.Id) - CheckInternalErrorStatus(t, resp) + CheckNotFoundStatus(t, resp) //Try to delete non-existing emoji _, resp = Client.DeleteEmoji(model.NewId()) - CheckInternalErrorStatus(t, resp) + CheckNotFoundStatus(t, resp) //Try to delete without Id _, resp = Client.DeleteEmoji("") @@ -297,7 +297,7 @@ func TestGetEmoji(t *testing.T) { } _, resp = Client.GetEmoji(model.NewId()) - CheckInternalErrorStatus(t, resp) + CheckNotFoundStatus(t, resp) } func TestGetEmojiImage(t *testing.T) { @@ -413,7 +413,7 @@ func TestGetEmojiImage(t *testing.T) { CheckNotFoundStatus(t, resp) _, resp = Client.GetEmojiImage(model.NewId()) - CheckInternalErrorStatus(t, resp) + CheckNotFoundStatus(t, resp) _, resp = Client.GetEmojiImage("") CheckBadRequestStatus(t, resp) -- cgit v1.2.3-1-g7c22