Skip to content

Commit

Permalink
Fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgate committed Mar 24, 2022
1 parent 4f160ac commit 31e16b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_shell_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ def test_trace_and_stats() -> None:
"""
logger = ShellLogger(stack()[0][3], Path.cwd())
if os.uname().sysname == "Linux":
measure = ["cpu", "memory", "disk"],
measure = ["cpu", "memory", "disk"]
result = logger._run(
"sleep 1",
measure=measure,
Expand Down Expand Up @@ -740,7 +740,7 @@ def test_log_book_trace_and_stats() -> None:
"""
if os.uname().sysname == "Linux":
logger = ShellLogger(stack()[0][3], Path.cwd())
measure = ["cpu", "memory", "disk"],
measure = ["cpu", "memory", "disk"]
logger.log(
"Sleep",
"sleep 1",
Expand Down

0 comments on commit 31e16b3

Please sign in to comment.