1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-08-25 13:50:12 +03:00

test: replace readfp() with read_file()

ConfigParser.readfp() has been deprecated since Python 3.2 and was
dropped completely in Python 3.11.

(cherry picked from commit ba4a1cd8a8)
This commit is contained in:
Frantisek Sumsal
2023-07-05 19:43:43 +02:00
committed by Luca Boccassi
parent f74337b756
commit 7dc6cccc4b

View File

@ -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)