diff --git a/aimmo-game/simulation/game_runner.py b/aimmo-game/simulation/game_runner.py index 50f477d27..b5f4aaacc 100644 --- a/aimmo-game/simulation/game_runner.py +++ b/aimmo-game/simulation/game_runner.py @@ -1,7 +1,7 @@ import time import threading -WORKER_UPDATE_SLEEP_TIME = 5 +WORKER_UPDATE_SLEEP_TIME = 10 class GameRunner(threading.Thread): diff --git a/aimmo-game/tests/test_simulation/fake_game_runner.py b/aimmo-game/tests/test_simulation/fake_game_runner.py index 312b1b9a0..1cdda0798 100644 --- a/aimmo-game/tests/test_simulation/fake_game_runner.py +++ b/aimmo-game/tests/test_simulation/fake_game_runner.py @@ -13,7 +13,6 @@ class FakeGameRunner(object): - """ TODO: This class probably will want to be deleted once GameRunner is complete. """ def __init__(self, settings=None, player_manager=None): # Default argument is now immutable if settings is None: diff --git a/aimmo-game/tests/test_simulation/test_game_runner.py b/aimmo-game/tests/test_simulation/test_game_runner.py index d818e517c..64665d62b 100644 --- a/aimmo-game/tests/test_simulation/test_game_runner.py +++ b/aimmo-game/tests/test_simulation/test_game_runner.py @@ -84,8 +84,6 @@ def test_remove_avatars(self): self.mock_communicator.data = RequestMock(3).value self.game_runner.update() del self.mock_communicator.data['main']['users'][1] - print('Modified data: {}'.format(self.mock_communicator.data['main']['users'])) - print('Workers: {}'.format(self.game_runner.worker_manager.avatar_id_to_worker.keys())) self.game_runner.update() for i in range(3):