Skip to content
Snippets Groups Projects
Commit 341b98af authored by Chris Lamb's avatar Chris Lamb 👀
Browse files

Tidy some unnecessary boolean logic in the ISO9660 tests.

parent f4f26dbc
No related branches found
No related tags found
No related merge requests found
......@@ -33,10 +33,7 @@ iso2 = load_fixture('test2.iso')
def is_cdrtools():
if b"Schilling" in subprocess.check_output(['isoinfo', '--version']):
return True
else:
return False
return b"Schilling" in subprocess.check_output(['isoinfo', '--version'])
def test_identification(iso1):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment