Skip to content

Commit

Permalink
Remove unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Agent-Hellboy committed Nov 19, 2024
1 parent 5cd1d1f commit 5255025
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_configparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down Expand Up @@ -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 = ('//', '"')
Expand Down

0 comments on commit 5255025

Please sign in to comment.