Skip to content

Commit

Permalink
PEP8 test_cli.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Lostanlen committed Nov 21, 2018
1 parent a310e93 commit ddf9df8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,11 @@ def test_run(capsys):
# make sure it printed a message
captured = capsys.readouterr()
expected_message =\
'birdvoxdetect: No WAV files found in {}. Aborting.\n'.format(str([tempdir]))
'birdvoxdetect: No WAV files found in {}. Aborting.\n'.format(
str([tempdir]))
assert captured.out == expected_message

# detele tempdir
# delete tempdir
os.rmdir(tempdir)

# nonexistent path
Expand Down

0 comments on commit ddf9df8

Please sign in to comment.