From 139a681f0e1d60beb7e77359b242f05a3a51ae60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Tue, 25 Nov 2025 22:33:04 -0500 Subject: [PATCH] fix org test --- tests/integration/org_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/org_test.go b/tests/integration/org_test.go index 6476f11587..c14f3b24c9 100644 --- a/tests/integration/org_test.go +++ b/tests/integration/org_test.go @@ -199,7 +199,7 @@ func testOrgRestrictedUser(t *testing.T) { req = NewRequest(t, "GET", "/"+orgName) restrictedSession.MakeRequest(t, req, http.StatusOK) - req = NewRequest(t, "GET", fmt.Sprintf("/%s/%s", orgName, repoName)) + req = NewRequest(t, "GET", fmt.Sprintf("/%s/%s%s", orgName, maybeGroupSegment(int64(repoGroup)), repoName)) restrictedSession.MakeRequest(t, req, http.StatusOK) }