minor: visit_Assert: move setting of `negation` out of branches

This commit is contained in:
Daniel Hahler 2019-11-18 20:26:31 +01:00
parent 64d8910516
commit f38f2d402e
1 changed files with 2 additions and 2 deletions

View File

@ -807,8 +807,9 @@ class AssertionRewriter(ast.NodeVisitor):
)
)
negation = ast.UnaryOp(ast.Not(), top_condition)
if self.enable_assertion_pass_hook: # Experimental pytest_assertion_pass hook
negation = ast.UnaryOp(ast.Not(), top_condition)
msg = self.pop_format_context(ast.Str(explanation))
# Failed
@ -860,7 +861,6 @@ class AssertionRewriter(ast.NodeVisitor):
else: # Original assertion rewriting
# Create failure message.
body = self.expl_stmts
negation = ast.UnaryOp(ast.Not(), top_condition)
self.statements.append(ast.If(negation, body, []))
if assert_.msg:
assertmsg = self.helper("_format_assertmsg", assert_.msg)