summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2014-12-22 22:11:45 -0800
committerIan Lee <IanLee1521@gmail.com>2015-02-05 23:37:43 -0800
commit9f563062c68c01a446646d9617beb260047d726c (patch)
tree7f79e540bc76b04c09fafb988998b2539a69144c
parentbcd5d2bae39bc2b43c02f394fea9950f40099199 (diff)
downloadpep8-issue-334.tar.gz
Add failing tests for issue #334issue-334
-rw-r--r--testsuite/E71.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/E71.py b/testsuite/E71.py
index ea870e5..643b0f8 100644
--- a/testsuite/E71.py
+++ b/testsuite/E71.py
@@ -38,6 +38,12 @@ if not X in Y and Z == "zero":
#: E713
if X == "zero" or not Y in Z:
pass
+#: E713
+if not (X) in Y:
+ pass
+#: E713
+if not X() in Y:
+ pass
#
#: E714