diff tests/test-walkrepo.py @ 16686:67964cda8701

cleanup: "not x in y" -> "x not in y"
author Brodie Rao <brodie@sf.io>
date Sat, 12 May 2012 16:00:57 +0200
parents 525fdb738975
children fad896292e7d
line wrap: on
line diff
--- a/tests/test-walkrepo.py	Sat May 12 16:00:53 2012 +0200
+++ b/tests/test-walkrepo.py	Sat May 12 16:00:57 2012 +0200
@@ -43,7 +43,7 @@
         print "reposet = %r" % (reposet,)
         print "sub1set and reposet should have exactly one path in common."
     sub3 = pjoin('.', 'circle', 'top1')
-    if sym and not (sub3 in reposet):
+    if sym and sub3 not in reposet:
         print "reposet = %r" % (reposet,)
         print "Symbolic links are supported and %s is not in reposet" % (sub3,)