correct expected message

--HG--
branch : trunk
This commit is contained in:
Benjamin Peterson 2010-06-18 22:55:06 -05:00
parent 3a8d13599e
commit 4d75c703a0
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ def test_power():
assert 2**3 == 7
except AssertionError:
e = exvalue()
assert "assert 8 == 7" in e.msg
assert "assert (2 ** 3) == 7" in e.msg
class TestView: