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

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Sep 6, 2016
1 parent e306390 commit 24ead4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _unittests/ut_pycode/test_code_helper.py
Expand Up @@ -70,7 +70,8 @@ def test_synchro_hash(self):
d = remove_extra_spaces_and_pep8(dest)
fLOG("removed", d)
assert d > 0
assert d < 100
if d >= 300:
raise Exception("d={0}".format(d))
if __name__ == "__main__":
create_visual_diff_through_html_files(filename, dest,
page=os.path.join(
Expand Down

0 comments on commit 24ead4f

Please sign in to comment.