From 11f34caac4b6b6c975dc133180a36ca5663b8b6d Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 29 Sep 2013 10:39:51 -0400 Subject: [PATCH] delete duplicate test (closes #19123) --- Lib/test/test_regrtest.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py index 353874b5a3e..2bb8db129f6 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -167,12 +167,6 @@ class ParseArgsTestCase(unittest.TestCase): self.assertEqual(ns.testdir, os.path.join(support.SAVEDCWD, 'foo')) self.checkError(['--testdir'], 'expected one argument') - def test_findleaks(self): - for opt in '-l', '--findleaks': - with self.subTest(opt=opt): - ns = regrtest._parse_args([opt]) - self.assertTrue(ns.findleaks) - def test_findleaks(self): for opt in '-L', '--runleaks': with self.subTest(opt=opt):