Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pilight/test/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import unittest
import time
from mock import patch, call
from unittest.mock import patch, call

try:
from StringIO import StringIO # Python 2
Expand Down Expand Up @@ -125,5 +125,5 @@ def test_no_callback(self):
pilight_client.start()
time.sleep(1) # Give time to set thread status

self.assertFalse(pilight_client.isAlive())
self.assertFalse(pilight_client.is_alive())
pilight_client.stop()