Fix tests

This commit is contained in:
Dan 2022-06-20 11:49:17 +02:00
parent 81baf853b5
commit 212ea57390

View File

@ -18,10 +18,10 @@
class Client:
def __init__(self):
self.username = "username"
self.me = User("username")
async def get_me(self):
return User(self.username)
return self.me
class User: