fix org test

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧
2026-04-02 20:01:10 -04:00
parent d2153d4cf1
commit 139a681f0e
+1 -1
View File
@@ -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)
}