Skip to content

Commit

Permalink
fix py26 test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jantman committed Jun 28, 2015
1 parent 8a62ec1 commit 84adb1f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions awslimitchecker/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,7 @@ def test_no_equals(self):
if sys.version_info[0] > 2:
msg = excinfo.value.args[0]
else:
if sys.version_info[1] < 7:
msg = excinfo.value
else:
msg = excinfo.value.message
msg = excinfo.value.message
assert msg == 2

def test_quoted(self):
Expand Down

0 comments on commit 84adb1f

Please sign in to comment.