From d447d9b64a03141bef7ac8e6bfffd8dc97273fc4 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Fri, 13 Aug 2021 20:39:40 +0530 Subject: [PATCH] Skip flaky TestTrialLicense (#18125) https://mattermost.atlassian.net/browse/MM-36695 ```release-note NONE ``` --- api4/license_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/api4/license_test.go b/api4/license_test.go index 354fe3c3b9..dba37eca61 100644 --- a/api4/license_test.go +++ b/api4/license_test.go @@ -219,6 +219,7 @@ func TestRequestTrialLicense(t *testing.T) { }) t.Run("trial license user count less than current users", func(t *testing.T) { + t.Skip("MM-36695") resp, err := th.SystemAdminClient.RequestTrialLicense(1) CheckErrorID(t, err, "api.license.add_license.unique_users.app_error") CheckBadRequestStatus(t, resp)