Skip to content

Commit 48ba4c4

Browse files
committed
Fix
1 parent 1bde01d commit 48ba4c4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/framework/github.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1142,9 +1142,10 @@ def test_github_det_account_branch_for_pr(self):
11421142

11431143
# see https://github.com/easybuilders/easybuild-framework/pull/3069
11441144
self.mock_stdout(True)
1145-
account, branch = gh.det_account_branch_for_pr(3069, github_user=GITHUB_TEST_ACCOUNT)
1145+
account, repo, branch = gh.det_account_branch_for_pr(3069, github_user=GITHUB_TEST_ACCOUNT)
11461146
self.mock_stdout(False)
11471147
self.assertEqual(account, 'migueldiascosta')
1148+
self.assertEqual(repo, 'easybuild-framework')
11481149
self.assertEqual(branch, 'fix_inject_checksums')
11491150

11501151
def test_github_det_pr_target_repo(self):

0 commit comments

Comments
 (0)