mirror of
https://github.com/systemd/systemd.git
synced 2024-11-23 10:13:34 +08:00
test: replace readfp() with read_file()
ConfigParser.readfp() has been deprecated since Python 3.2 and was dropped completely in Python 3.11.
This commit is contained in:
parent
c75f81292d
commit
ba4a1cd8a8
@ -82,7 +82,7 @@ class SysvGeneratorTest(unittest.TestCase):
|
||||
cp = RawConfigParser(dict_type=MultiDict)
|
||||
cp.optionxform = lambda o: o # don't lower-case option names
|
||||
with open(service) as f:
|
||||
cp.readfp(f)
|
||||
cp.read_file(f)
|
||||
results[os.path.basename(service)] = cp
|
||||
|
||||
return (err, results)
|
||||
|
Loading…
Reference in New Issue
Block a user