Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Thanhphan1147 committed Nov 25, 2024
1 parent a432b3b commit 033304f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ async def test_synapse_is_up(
assert action.results["return-code"] == 0, "mas-cli binary not found."
assert action.results["stdout"] == "/usr/bin/mas-cli"

assets_check_cmd = "/bin/bash -c " f"'{pebble_exec_cmd} -- [ -d /mas/assets ] && echo ok!'"
assets_check_cmd = (
"/bin/bash -c " f"'{pebble_exec_cmd} -- [ -d /mas/share/assets ] && echo ok!'"
)
action = await unit.run(assets_check_cmd)
await action.wait()
assert action.results["return-code"] == 0, "mas assets folder not found."
Expand Down

0 comments on commit 033304f

Please sign in to comment.