Skip to content

Commit 212ea57

Browse files
committed
Fix tests
1 parent 81baf85 commit 212ea57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/filters/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818

1919
class Client:
2020
def __init__(self):
21-
self.username = "username"
21+
self.me = User("username")
2222

2323
async def get_me(self):
24-
return User(self.username)
24+
return self.me
2525

2626

2727
class User:

0 commit comments

Comments
 (0)