Skip to content

Commit 2ad6c82

Browse files
gh-70999: trim verbose test comments per review
1 parent 0ea8e9d commit 2ad6c82

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

Lib/test/test_configparser.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1348,14 +1348,9 @@ def test_get_with_vars_nested(self):
13481348
""").strip())
13491349

13501350
eq = self.assertEqual
1351-
# Directly referencing the overridden option already worked.
13521351
eq(cf.get('section', 'b', vars={'c': 'OVERRIDE'}), 'OVERRIDE')
1353-
# Reaching it through another same-section option must too.
13541352
eq(cf.get('section', 'a', vars={'c': 'OVERRIDE'}), 'OVERRIDE')
1355-
# Without an override the configured value is still used.
13561353
eq(cf.get('section', 'a'), 'default')
1357-
# ``vars`` are scoped to the requested section and must not leak
1358-
# into a different section reached via ``${section:option}``.
13591354
eq(cf.get('cross', 'via', vars={'c': 'OVERRIDE'}), 'default')
13601355

13611356

0 commit comments

Comments
 (0)