Skip to content

Commit 081c340

Browse files
committed
Remove unnecessary changes
1 parent 38809c9 commit 081c340

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_configparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,6 @@ class RawConfigParserTestCase(BasicTestCase, unittest.TestCase):
10801080
config_class = configparser.RawConfigParser
10811081

10821082
def test_interpolation(self):
1083-
10841083
cf = self.get_interpolation_config()
10851084
eq = self.assertEqual
10861085
eq(cf.get("Foo", "bar"),
@@ -1127,6 +1126,7 @@ def test_defaults_keyword(self):
11271126
cf = self.newconfig(defaults={"A": 5.2})
11281127
self.assertAlmostEqual(cf[self.default_section]['a'], 5.2)
11291128

1129+
11301130
class RawConfigParserTestCaseNonStandardDelimiters(RawConfigParserTestCase):
11311131
delimiters = (':=', '$')
11321132
comment_prefixes = ('//', '"')

0 commit comments

Comments
 (0)