Skip to content

Commit d1de207

Browse files
committed
chore: fix tests
Signed-off-by: Tim Knight <tim.knight1@engineering.digital.dwp.gov.uk>
1 parent 5d15d16 commit d1de207

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/functional/api/test_project_job_token_scope.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_remove_project_by_id_from_projects_job_token_scope_allowlist(gl, projec
4343

4444
def test_add_group_to_job_token_scope_allowlist(gl, project):
4545
group_to_add = gl.groups.create(
46-
{"name": "Ci_Cd_token_add_proj", "path": "allowlisted/add-test"}
46+
{"name": "add_group", "path": "allowlisted-add-test"}
4747
)
4848

4949
scope = project.job_token_scope.get()
@@ -59,9 +59,9 @@ def test_projects_job_token_scope_groups_allowlist_contains_added_group_name(
5959
gl, project
6060
):
6161
scope = project.job_token_scope.get()
62-
group_name = "Ci_Cd_token_named_group"
62+
group_name = "list_group"
6363
group_to_add = gl.groups.create(
64-
{"name": group_name, "path": "allowlisted/add-and-list-test"}
64+
{"name": group_name, "path": "allowlisted-add-and-list-test"}
6565
)
6666

6767
scope.groups_allowlist.create({"target_group_id": group_to_add.id})

0 commit comments

Comments
 (0)