From fbe39749a1cf33e482715ebdc52c1ff10cc06208 Mon Sep 17 00:00:00 2001 From: subzeroid <143403577+subzeroid@users.noreply.github.com> Date: Thu, 21 Dec 2023 15:06:03 +0300 Subject: [PATCH] fix tests --- tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.py b/tests.py index 93ebb842..9f9a940f 100644 --- a/tests.py +++ b/tests.py @@ -129,7 +129,7 @@ def setup_method(self, *args, **kwargs): def fresh_account(self): acc = requests.get(TEST_ACCOUNTS_URL).json()[0] - print("New fresh account %r" % acc["username"]) + print("New fresh account %(username)r" % acc) settings = acc["client_settings"] totp_seed = settings.pop("totp_seed", None) cl = Client(settings=settings, proxy=acc["proxy"])