summaryrefslogtreecommitdiffstats
path: root/api4/system_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/system_test.go')
-rw-r--r--api4/system_test.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/api4/system_test.go b/api4/system_test.go
index f784a8be4..099c193d0 100644
--- a/api4/system_test.go
+++ b/api4/system_test.go
@@ -696,9 +696,7 @@ func TestS3TestConnection(t *testing.T) {
config.FileSettings.AmazonS3Bucket = "Wrong_bucket"
_, resp = th.SystemAdminClient.TestS3Connection(&config)
CheckInternalErrorStatus(t, resp)
- if resp.Error.Message != "Unable to create bucket" {
- t.Fatal("should return error ")
- }
+ assert.Equal(t, "Unable to create bucket.", resp.Error.Message)
config.FileSettings.AmazonS3Bucket = "shouldcreatenewbucket"
_, resp = th.SystemAdminClient.TestS3Connection(&config)