Skip to content
Snippets Groups Projects
Commit 5ac58524 authored by Sybren A. Stüvel's avatar Sybren A. Stüvel
Browse files

Fixed unittest

parent 6488f542
Branches
Tags
No related merge requests found
...@@ -42,5 +42,8 @@ class MergeProgressiveRendersCommandTest(AbstractCommandTest): ...@@ -42,5 +42,8 @@ class MergeProgressiveRendersCommandTest(AbstractCommandTest):
# Assuming that if the files exist, the merge was ok. # Assuming that if the files exist, the merge was ok.
self.assertTrue(output.exists()) self.assertTrue(output.exists())
self.assertTrue(output.is_file()) self.assertTrue(output.is_file())
self.assertTrue(output.with_suffix('.jpg').exists())
self.assertTrue(output.with_suffix('.jpg').is_file()) # Sybren disabled preview generation since we don't use those any more
# in the studio.
# self.assertTrue(output.with_suffix('.jpg').exists())
# self.assertTrue(output.with_suffix('.jpg').is_file())
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment