Skip to content

Commit

Permalink
Merge 06f47ea into 811a6ae
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Jan 14, 2019
2 parents 811a6ae + 06f47ea commit 6346ad0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/helper.py
Expand Up @@ -140,14 +140,14 @@ def assert_image_similar(self, a, b, epsilon, msg=None):
(msg or '') +
" average pixel value difference %.4f > epsilon %.4f" % (
ave_diff, epsilon))
except Exception:
except Exception as e:
if HAS_UPLOADER:
try:
url = test_image_results.upload(a, b)
logger.error("Url for test images: %s" % url)
except Exception:
pass
raise
raise e

def assert_image_similar_tofile(self, a, filename, epsilon, msg=None,
mode=None):
Expand Down

0 comments on commit 6346ad0

Please sign in to comment.