We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 573b497 commit 8e53911Copy full SHA for 8e53911
tests/integration/org_test.go
@@ -74,7 +74,7 @@ func TestLimitedOrg(t *testing.T) {
74
session.MakeRequest(t, req, http.StatusOK)
75
req = NewRequest(t, "GET", "/limited_org/public_repo_on_limited_org/code")
76
77
- req = NewRequest(t, "GET", "/limited_org/private_repo_on_limited_org")
+ req = NewRequest(t, "GET", "/limited_org/private_repo_on_limited_org/code")
78
79
}
80
@@ -191,7 +191,7 @@ func TestOrgRestrictedUser(t *testing.T) {
191
req = NewRequest(t, "GET", fmt.Sprintf("/%s", orgName))
192
restrictedSession.MakeRequest(t, req, http.StatusOK)
193
194
- req = NewRequest(t, "GET", fmt.Sprintf("/%s/%s", orgName, repoName))
+ req = NewRequest(t, "GET", fmt.Sprintf("/%s/%s/code", orgName, repoName))
195
196
197
0 commit comments