From ba37983caa3659f9ec7130eb5c74e4523f97dc5f Mon Sep 17 00:00:00 2001 From: codethulu Date: Mon, 3 Jun 2024 22:52:19 +0100 Subject: [PATCH] linting fix --- tests/integration/test_charm.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/test_charm.py b/tests/integration/test_charm.py index 12506c23..6064c751 100644 --- a/tests/integration/test_charm.py +++ b/tests/integration/test_charm.py @@ -379,6 +379,6 @@ async def test_user_creation( # Re-creating the same user should fail, as the user already exists email = "admin-user@test.internal" - action: Action = await discourse_unit.run_action("create-user", email=email) - await action.wait() - assert action.status == "failed" + break_action: Action = await discourse_unit.run_action("create-user", email=email) + await break_action.wait() + assert break_action.status == "failed"