Skip to content

Commit

Permalink
Fix execute proc fn
Browse files Browse the repository at this point in the history
  • Loading branch information
lnauta committed Sep 4, 2024
1 parent ebf1e8f commit ee69025
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):
proc, returncode, stdout, stderr = execute(["echo", "'hello world'"])
returncode, stdout, stderr = execute(["echo", "'hello world'"])

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

0 comments on commit ee69025

Please sign in to comment.