Skip to content

Commit

Permalink
Issue #599: test_6 doesn't test anything.
Browse files Browse the repository at this point in the history
Removed as it was crashing on Windows, achieving nothing on Linux.
  • Loading branch information
Julian-O committed Jul 1, 2017
1 parent e72cc02 commit ff6688c
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions tests/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,5 @@ def test_5():
file = sys.stdout.read()
assert file == b""

def test_6():
"""Test subprocess_call for operation.
The process sleep should run for a given time in seconds.
This checks that the process has deallocated from the stack on
completion of the called process.
"""
process = tools.subprocess_call(["sleep" , '1'])
time.sleep(1)
assert process is None

if __name__ == '__main__':
pytest.main()

0 comments on commit ff6688c

Please sign in to comment.