瀏覽代碼

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()