Skip to content

Commit

Permalink
Forgot to make the Py3 exec test use the Py3 exec
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Mar 19, 2013
1 parent 7c0340d commit 89fc38e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_basic.py
Expand Up @@ -268,7 +268,7 @@ def test_exec_statement(self):
def test_exec_statement(self):
self.assert_ok("""\
g = {}
exec "a = 11" in g, g
exec("a = 11", g, g)
assert g['a'] == 11
""")

Expand Down

0 comments on commit 89fc38e

Please sign in to comment.