forked from LBRYCommunity/lbry-sdk
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:
parent
b032e99dd1
commit
0f1ed589a5
2 changed files with 6 additions and 6 deletions
|
@ -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):
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue