Modifies the unit tests for the analytics manager to have async routines

Signed-off-by: Oleg Silkin <o.silkin98@gmail.com>
This commit is contained in:
Oleg Silkin 2019-01-09 00:13:17 -06:00 committed by Lex Berezhny
parent b032e99dd1
commit 0f1ed589a5
2 changed files with 6 additions and 6 deletions

View file

@ -18,10 +18,10 @@ class FakeAnalytics:
def is_started(self):
return True
def send_server_startup_success(self):
async def send_server_startup_success(self):
pass
def send_server_startup(self):
async def send_server_startup(self):
pass
def shutdown(self):

View file

@ -33,19 +33,19 @@ class FakeAnalytics:
def is_started(self):
return True
def send_new_channel(self):
async def send_new_channel(self):
pass
def shutdown(self):
pass
def send_claim_action(self, action):
async def send_claim_action(self, action):
pass
def send_credits_sent(self):
async def send_credits_sent(self):
pass
def send_server_startup(self):
async def send_server_startup(self):
pass