Skip to content

Commit

Permalink
Fix test return value
Browse files Browse the repository at this point in the history
  • Loading branch information
lnauta committed Sep 3, 2024
1 parent feb96d4 commit 9fff08c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_executers.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class TestExecutors(unittest.TestCase):

def test_run_command(self):
returncode, stdout, stderr = execute(["echo", "'hello world'"])
proc, returncode, stdout, stderr = execute(["echo", "'hello world'"])

self.assertEqual(returncode, 0)
self.assertEqual(stdout, b"'hello world'\n")
Expand Down

0 comments on commit 9fff08c

Please sign in to comment.