Skip to content
This repository has been archived by the owner on Sep 22, 2020. It is now read-only.

Commit

Permalink
Fix skipif wand not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
relekang committed Apr 2, 2015
1 parent 040dc2b commit 8fa5c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_engines.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def test_load_with_os_error(self, mock_image_load):
mock_image_load.assert_called_once()


@unittest.skipIf(not has_installed('wand'), 'Wand not installed')
@unittest.skipIf(not has_installed('wand.image'), 'Wand not installed')
class WandEngineTestCase(EngineTestMixin, unittest.TestCase):
ENGINE = WandEngine
RAW_DATA_HASH = '8eb021308a7fb04cb0e87ce9026828f42e8a4a81'
Expand Down

0 comments on commit 8fa5c24

Please sign in to comment.