ソースを参照

Fix SyntaxError in test_leak.py

Catalin Iacob 12 年 前
コミット
3ade3cb57e
1 ファイル変更1 行追加1 行削除
  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()