Skip to content

Commit

Permalink
oops accidental change
Browse files Browse the repository at this point in the history
  • Loading branch information
agroszer committed Apr 2, 2016
1 parent 91fda81 commit 16e8074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/z3c/rml/tests/test_rml.py
Expand Up @@ -77,7 +77,7 @@ def assertSameImage(self, baseImage, testImage):
base = Image.open(base_file).getdata()
test = Image.open(test_file).getdata()
for i in range(len(base)):
if not (base[i] - test[i]) != 0:
if (base[i] - test[i]) != 0:
# output the result as base64 for travis debugging
base_file.seek(0)
print()
Expand Down

0 comments on commit 16e8074

Please sign in to comment.