Skip to content

Commit 6b66f0d

Browse files
fixed TestRemoteRobot.teardown_class()
--HG-- branch : dev
1 parent a055ece commit 6b66f0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/remote/test_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def teardown_class(cls):
8989
"""Ensures that the ``RemoteRobot`` process
9090
is really terminated in the end.
9191
"""
92-
if not cls.process.poll():
92+
if cls.process.poll() is None:
9393
cls.process.terminate()
9494

9595

0 commit comments

Comments
 (0)