Explorar el Código

Fix SyntaxError in test_leak.py

Catalin Iacob hace 12 años
padre
commit
3ade3cb57e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      funtests/suite/test_leak.py

+ 1 - 1
funtests/suite/test_leak.py

@@ -40,7 +40,7 @@ class LeakFunCase(unittest.TestCase):
                         shlex.split(cmd % {'pid': os.getpid()}),
                             stdout=subprocess.PIPE).communicate()[0].strip())
         except OSError, exc:
-            raise SkipTest('Can't execute command: %r: %r' % (cmd, exc))
+            raise SkipTest("Can't execute command: %r: %r" % (cmd, exc))
 
     def sample_allocated(self, fun, *args, **kwargs):
         before = self.get_rsize()