From 1138dd67705829a6af0d6c610cf3dbe09082187c Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Wed, 14 Jun 2017 08:56:56 -0400 Subject: PLT-6657 Move system console to use v4 endpoints and redux (#6572) * Move system console to use v4 endpoints and redux * Rename logs dir to get past gitignore * Fix test email * Update brand unit test * Updates per feedback --- api4/brand_test.go | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) (limited to 'api4/brand_test.go') diff --git a/api4/brand_test.go b/api4/brand_test.go index 98a539574..6ecb41a83 100644 --- a/api4/brand_test.go +++ b/api4/brand_test.go @@ -13,27 +13,15 @@ func TestGetBrandImage(t *testing.T) { defer TearDown() Client := th.Client - data, resp := Client.GetBrandImage() - CheckNoError(t, resp) - - if len(data) != 0 { - t.Fatal("no image uploaded - should be empty") - } + _, resp := Client.GetBrandImage() + CheckNotFoundStatus(t, resp) Client.Logout() - data, resp = Client.GetBrandImage() - CheckNoError(t, resp) - - if len(data) != 0 { - t.Fatal("no image uploaded - should be empty") - } - - data, resp = th.SystemAdminClient.GetBrandImage() - CheckNoError(t, resp) + _, resp = Client.GetBrandImage() + CheckNotFoundStatus(t, resp) - if len(data) != 0 { - t.Fatal("no image uploaded - should be empty") - } + _, resp = th.SystemAdminClient.GetBrandImage() + CheckNotFoundStatus(t, resp) } func TestUploadBrandImage(t *testing.T) { -- cgit v1.2.3-1-g7c22