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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToon Claes <toon@gitlab.com>2023-06-05 11:58:57 +0300
committerToon Claes <toon@gitlab.com>2023-06-07 16:35:56 +0300
commit4686b8319d4879818a86e29492166902a84a8716 (patch)
tree9a6dbfcea933bba279f5348e9fd5b4f9add2e717
parentee0c42564b24c91a5c382752caa200333bd47a3e (diff)
-rw-r--r--cmd/gitaly-hooks/hooks_test.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/cmd/gitaly-hooks/hooks_test.go b/cmd/gitaly-hooks/hooks_test.go
index db8efb38e..1fbb70a86 100644
--- a/cmd/gitaly-hooks/hooks_test.go
+++ b/cmd/gitaly-hooks/hooks_test.go
@@ -778,12 +778,6 @@ remote: error executing git hook
},
} {
t.Run(tc.name, func(t *testing.T) {
- testhelper.SkipQuarantinedTest(t,
- "https://gitlab.com/gitlab-org/gitaly/-/issues/5105",
- "TestGitalyServerReturnsError_packObjects/resource_exhausted_with_LimitError_detail",
- "TestGitalyServerReturnsError_packObjects/resource_exhausted_without_LimitError_detail",
- )
-
logDir := testhelper.TempDir(t)
ctx := testhelper.Context(t)
@@ -837,6 +831,7 @@ remote: error executing git hook
require.NotEmpty(t, hookLogs)
require.Contains(t, hookLogs, tc.expectedLogs)
require.Contains(t, hookLogs, fmt.Sprintf("correlation_id=%s", correlationID))
+ require.Empty
})
}
}