Fix a typo in assertion rewriting.

This commit is contained in:
Michał Bartoszkiewicz 2011-07-11 11:57:47 +02:00
parent 8cd68494bf
commit 6096aeca53
2 changed files with 7 additions and 1 deletions

View File

@ -421,7 +421,7 @@ class AssertionRewriter(ast.NodeVisitor):
if chain:
where = []
if len(chain) > 1:
cond = ast.Boolop(ast.And(), chain)
cond = ast.BoolOp(ast.And(), list(chain))
else:
cond = chain[0]
self.statements.append(ast.If(cond, where, []))

View File

@ -138,6 +138,12 @@ class TestAssertionRewrite:
assert f or g
getmsg(f, must_pass=True)
def test_long_chain(self):
def f():
f = g = h = lambda: True
assert f() and g() and h()
getmsg(f, must_pass=True)
def test_short_circut_evaluation(self):
def f():
assert True or explode