Skip to content

Commit

Permalink
test(restapi): Fixed missing commas in conftest
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhand committed May 17, 2024
1 parent 415ae6c commit c2f5982
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/restapi/v1/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,19 @@ def registered_tags(
) -> dict[str, Any]:
tag1_response = actions.register_tag(
client,
name="tag_one"
name="tag_one",
description="The first tag.",
group_id=auth_account["default_group_id"],
).get_json()
tag2_response = actions.register_tag(
client,
name="tag_two"
name="tag_two",
description="The second tag.",
group_id=auth_account["default_group_id"],
).get_json()
tag3_response = actions.register_tag(
client,
name="tag_three"
name="tag_three",
description="Not retrieved.",
group_id=auth_account["default_group_id"],
).get_json()
Expand Down

0 comments on commit c2f5982

Please sign in to comment.