Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
callumforrester committed Jul 11, 2024
1 parent 33271f2 commit 1d8e512
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def test_reset_env_client_behavior(
# assert "Environment is initialized." in result.output
assert (
reload_result.output
== "Reloading environment\nEnvironment is initialized.\ninitialized=True error_message=None\n" # noqa: E501
== "Reloading environment\nEnvironment is initialized\ninitialized=True error_message=None\n" # noqa: E501
)


Expand Down Expand Up @@ -324,7 +324,7 @@ def test_env_endpoint_interaction(

# Check other assertions as needed, e.g., output or exit codes
assert result.exit_code == 0
assert "Environment is initialized." in result.output
assert "Environment is initialized" in result.output


@pytest.mark.handler
Expand Down

0 comments on commit 1d8e512

Please sign in to comment.