Skip to content

Commit

Permalink
tests: test_spawn: change test_spawn_sanity echo->sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Feb 21, 2022
1 parent 4917dc9 commit f5e6427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpcclient/tests/test_spawn.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


@pytest.mark.parametrize('argv,expected_stdout,errorcode', [
[['/bin/echo', 'blat'], 'blat', 0],
[['/bin/sleep', '0'], '', 0],
[['/bin/ls', 'INVALID_PATH'], 'ls: INVALID_PATH: No such file or directory', 256],
])
def test_spawn_sanity(client, argv, expected_stdout, errorcode):
Expand Down

0 comments on commit f5e6427

Please sign in to comment.