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.
2 parents cbbe7ce + e5af2a7 commit 48b06a9Copy full SHA for 48b06a9
tests/functional/api/test_projects.py
@@ -333,13 +333,13 @@ def test_project_groups_list(gl, group):
333
334
def test_project_transfer(gl, project, group):
335
assert project.namespace["path"] != group.full_path
336
- project.transfer_project(group.id)
+ project.transfer(group.id)
337
338
project = gl.projects.get(project.id)
339
assert project.namespace["path"] == group.full_path
340
341
gl.auth()
342
- project.transfer_project(gl.user.username)
+ project.transfer(gl.user.username)
343
344
345
assert project.namespace["path"] == gl.user.username
0 commit comments