summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdi Roiban <adi.roiban@chevah.com>2015-02-14 15:07:52 +0000
committerAdi Roiban <adi.roiban@chevah.com>2015-02-14 15:07:52 +0000
commit84b7dd63a379b30968f028a0346ec1958c82fbbe (patch)
treeda7829d7168576bfbc99ea87d25772d359a25730
parent2171de4f23e837ade4e76061719b1fd1c804f8cf (diff)
downloadpyflakes-84b7dd63a379b30968f028a0346ec1958c82fbbe.tar.gz
Fix print function.
-rw-r--r--pyflakes/test/test_undefined_names.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyflakes/test/test_undefined_names.py b/pyflakes/test/test_undefined_names.py
index 165999d..bbded24 100644
--- a/pyflakes/test/test_undefined_names.py
+++ b/pyflakes/test/test_undefined_names.py
@@ -158,7 +158,7 @@ class Test(TestCase):
foo = 'bar'
while False:
del foo
- print foo
+ assert(foo)
''')
def test_delWhileTestUsage(self):