summaryrefslogtreecommitdiff
path: root/systemd/test/test_daemon.py
diff options
context:
space:
mode:
Diffstat (limited to 'systemd/test/test_daemon.py')
-rw-r--r--systemd/test/test_daemon.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/systemd/test/test_daemon.py b/systemd/test/test_daemon.py
index c1e08c7..ae76e54 100644
--- a/systemd/test/test_daemon.py
+++ b/systemd/test/test_daemon.py
@@ -243,12 +243,12 @@ def test_listen_fds_default_unset():
assert listen_fds() == []
def test_notify_no_socket():
- assert notify('READY=1') == False
+ assert notify('READY=1') is False
with skip_enosys():
- assert notify('FDSTORE=1', fds=[]) == False
- assert notify('FDSTORE=1', fds=[1,2]) == False
- assert notify('FDSTORE=1', pid=os.getpid()) == False
- assert notify('FDSTORE=1', pid=os.getpid(), fds=(1,)) == False
+ assert notify('FDSTORE=1', fds=[]) is False
+ assert notify('FDSTORE=1', fds=[1, 2]) is False
+ assert notify('FDSTORE=1', pid=os.getpid()) is False
+ assert notify('FDSTORE=1', pid=os.getpid(), fds=(1,)) is False
if sys.version_info >= (3,):
connection_error = ConnectionRefusedError
@@ -264,7 +264,7 @@ def test_notify_bad_socket():
with skip_enosys():
notify('FDSTORE=1', fds=[])
with pytest.raises(connection_error):
- notify('FDSTORE=1', fds=[1,2])
+ notify('FDSTORE=1', fds=[1, 2])
with pytest.raises(connection_error):
notify('FDSTORE=1', pid=os.getpid())
with pytest.raises(connection_error):
@@ -282,9 +282,9 @@ def test_notify_with_socket(tmpdir):
sock.setsockopt(socket.SOL_SOCKET, SO_PASSCRED, 1)
os.environ['NOTIFY_SOCKET'] = path
- assert notify('READY=1') == True
+ assert notify('READY=1')
with skip_enosys():
- assert notify('FDSTORE=1', fds=[]) == True
- assert notify('FDSTORE=1', fds=[1,2]) == True
- assert notify('FDSTORE=1', pid=os.getpid()) == True
- assert notify('FDSTORE=1', pid=os.getpid(), fds=(1,)) == True
+ assert notify('FDSTORE=1', fds=[])
+ assert notify('FDSTORE=1', fds=[1, 2])
+ assert notify('FDSTORE=1', pid=os.getpid())
+ assert notify('FDSTORE=1', pid=os.getpid(), fds=(1,))