Update dependency to cysystemd

closes #8187
This commit is contained in:
Matthias
2023-02-19 19:30:27 +01:00
parent b0ec35d526
commit e9c64c5839
4 changed files with 6 additions and 5 deletions

View File

@@ -2573,7 +2573,7 @@ def import_fails() -> None:
realimport = builtins.__import__
def mockedimport(name, *args, **kwargs):
if name in ["filelock", 'systemd.journal', 'uvloop']:
if name in ["filelock", 'cysystemd.journal', 'uvloop']:
raise ImportError(f"No module named '{name}'")
return realimport(name, *args, **kwargs)