Skip to content

Commit

Permalink
C812 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
morozsm committed Nov 20, 2020
1 parent 92f5070 commit f83aeda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_topalias.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ def test_load_command_bank():
""" Test core load_command_bank() """
cli_path = importlib.util.find_spec("cli").origin
assert "Multiline" in subprocess.check_output(
sys.executable + f" {cli_path} -f 'topalias/data' --debug -z", shell=True
sys.executable + f" {cli_path} -f 'topalias/data' --debug -z", shell=True,
).decode("UTF-8")
assert "Multiline" not in subprocess.check_output(
sys.executable + f" {cli_path} -f 'topalias/data' -z", shell=True
sys.executable + f" {cli_path} -f 'topalias/data' -z", shell=True,
).decode("UTF-8")

0 comments on commit f83aeda

Please sign in to comment.