Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2022-06-27 11:45:17 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2022-06-27 11:45:17 +0300
commit3c367960d85a5720024c47a6357c1fa1c9deabc6 (patch)
tree4f32df1824ada10db52ee445f1ceefe1fe767e7b /test
parentbadac3a123f87168e1da077b7fba06b4e2f9ce4b (diff)
Fix TestSlowRequests test
we do not log the error anymore.
Diffstat (limited to 'test')
-rw-r--r--test/acceptance/serving_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/acceptance/serving_test.go b/test/acceptance/serving_test.go
index cf50069d..c7aed337 100644
--- a/test/acceptance/serving_test.go
+++ b/test/acceptance/serving_test.go
@@ -578,7 +578,6 @@ func TestSlowRequests(t *testing.T) {
require.Error(t, err, "cancelling the context should trigger this error")
require.Eventually(t, func() bool {
- require.Contains(t, logBuf.String(), "context done: context canceled", "error mismatch")
require.Contains(t, logBuf.String(), "\"status\":404", "status mismatch")
return true
}, time.Second, time.Millisecond)