Skip to content

Commit dc65ec2

Browse files
Vasil ChimevVasil Chimev
Vasil Chimev
authored and
Vasil Chimev
committed
Update watcher.py
1 parent ea85b58 commit dc65ec2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

helpers/watch_base_class.py renamed to helpers/watcher.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
This class implements Watch Base Class.
2+
This class implements Watcher Base Class.
33
'''
44

55
# C0111 - Missing docstring
@@ -10,7 +10,7 @@
1010
from multiprocessing import Process
1111

1212

13-
class WatchBaseClass(unittest.TestCase):
13+
class Watcher(unittest.TestCase):
1414

1515
SECONDS_TO_WAIT = 150
1616

tests/livesync_emulator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
create_project, platform_add, run, livesync, TNS_PATH
1616
from helpers.device import given_running_emulator, stop_emulators
1717
from helpers.simulator import stop_simulators
18-
from helpers.watch_base_class import WatchBaseClass
18+
from helpers.watcher import Watcher
1919

2020

21-
class LiveSyncEmulator(WatchBaseClass):
21+
class LiveSyncEmulator(Watcher):
2222

2323
# TODO: Add a test for #942.
2424

tests/livesync_simulator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
from helpers.simulator import create_simulator, delete_simulator, \
1717
cat_app_file_on_simulator, start_simulator, stop_simulators, \
1818
SIMULATOR_NAME
19-
from helpers.watch_base_class import WatchBaseClass
19+
from helpers.watcher import Watcher
2020

2121

22-
class LiveSyncSimulator(WatchBaseClass):
22+
class LiveSyncSimulator(Watcher):
2323

2424
@classmethod
2525
def setUpClass(cls):

0 commit comments

Comments
 (0)