Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
tests: Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Aug 15, 2017
1 parent d83ce97 commit 2dc6ce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class TestImage(unittest.TestCase):
def test_get_img(self):
"""> Validate image file."""
result = image.get("tests/test_files/test.jpg")
self.assertEqual(result, "tests/test_files/test.jpg")
self.assertIn("tests/test_files/test.jpg", result)

def test_get_img_dir(self):
"""> Validate image directory."""
Expand Down

0 comments on commit 2dc6ce2

Please sign in to comment.