diff --git a/test/test_utils.py b/test/test_utils.py index 5b5e818ef..3a7aca158 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -160,11 +160,11 @@ class UtilsTest(SupyTestCase): self.assertEqual(s, eval(r), s) self.failUnless(r[0] == '"' and r[-1] == '"', s) - def testQuoted(self): - s = 'foo' - t = 'let\'s' - self.assertEqual("'%s'" % s, utils.quoted(s), s) - self.assertEqual('"%s"' % t, utils.quoted(t), t) +## def testQuoted(self): +## s = 'foo' +## t = 'let\'s' +## self.assertEqual("'%s'" % s, utils.quoted(s), s) +## self.assertEqual('"%s"' % t, utils.quoted(t), t) def testPerlReToPythonRe(self): r = utils.perlReToPythonRe('m/foo/')