소스 검색

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