Skip to content

Commit

Permalink
Fix IT fixture ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
Weves committed Oct 25, 2024
1 parent 4a47e9a commit 4ca3820
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion backend/tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def reset() -> None:


@pytest.fixture
def new_admin_user() -> DATestUser | None:
def new_admin_user(reset: None) -> DATestUser | None:
try:
return UserManager.create(name="admin_user")
except Exception:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ def test_using_reference_docs_with_simple_with_history_api_flow(reset: None) ->


def test_send_message_simple_with_history_strict_json(
reset: None,
new_admin_user: DATestUser | None,
) -> None:
# create connectors
Expand Down

0 comments on commit 4ca3820

Please sign in to comment.