1
0
Fork 0
mirror of synced 2025-07-04 04:17:29 +02:00

Rework the way we're outputing files

This commit is contained in:
jvoisin 2018-04-30 23:46:37 +02:00
parent d2b2a54a72
commit 23bc7e8f5f
3 changed files with 21 additions and 19 deletions

View file

@ -45,7 +45,7 @@ class TestCleanMeta(unittest.TestCase):
stdout=subprocess.PIPE)
stdout, _ = proc.communicate()
proc = subprocess.Popen(['./main.py', '--show', './tests/data/clean.jpg.cleaned'],
proc = subprocess.Popen(['./main.py', '--show', './tests/data/clean.cleaned.jpg'],
stdout=subprocess.PIPE)
stdout, _ = proc.communicate()
self.assertNotIn(b'Comment: Created with GIMP', stdout)