diff --git a/Lib/test/test_configparser.py b/Lib/test/test_configparser.py index fb5e6d4c2032af..e3c5d08dd1e7d1 100644 --- a/Lib/test/test_configparser.py +++ b/Lib/test/test_configparser.py @@ -1080,7 +1080,6 @@ class RawConfigParserTestCase(BasicTestCase, unittest.TestCase): config_class = configparser.RawConfigParser def test_interpolation(self): - cf = self.get_interpolation_config() eq = self.assertEqual eq(cf.get("Foo", "bar"), @@ -1127,6 +1126,7 @@ def test_defaults_keyword(self): cf = self.newconfig(defaults={"A": 5.2}) self.assertAlmostEqual(cf[self.default_section]['a'], 5.2) + class RawConfigParserTestCaseNonStandardDelimiters(RawConfigParserTestCase): delimiters = (':=', '$') comment_prefixes = ('//', '"')