summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-10-28 10:02:53 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-10-28 10:02:53 -0400
commit8ccd64789ab030b76a99b578b5b1e9812b7a8cd8 (patch)
tree3586f2d52836e7ca5c9e3e57eb60d22594d00f81
parent644e11f398427054b17a5f71f5cb89140c2a90bc (diff)
downloadpython-systemd-231.tar.gz
tests: mirror is-systemd-running test from systemdv231
-rw-r--r--systemd/test/test_daemon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/systemd/test/test_daemon.py b/systemd/test/test_daemon.py
index 8dac870..e055048 100644
--- a/systemd/test/test_daemon.py
+++ b/systemd/test/test_daemon.py
@@ -26,7 +26,7 @@ def closing_socketpair(family):
def test_booted():
- if os.path.exists('/run/systemd'):
+ if os.path.exists('/run/systemd/system'):
# assume we are running under systemd
assert booted()
else: