Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nervousapps committed Feb 20, 2024
1 parent 21512fe commit 2a760d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/auto_chaos/base_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def do_action(self, data: str) -> tuple[list[str], list[str]]:
# Parse the string and get the action
if "," in data:
datas = data.split(",")
if "\n" in data:
elif "\n" in data:
datas = data.split("\n")
else:
datas = [data]
Expand Down

0 comments on commit 2a760d6

Please sign in to comment.