mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
python: Convert percent formatting to Python 3.6 f-strings.
Generated by pyupgrade --py36-plus. Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
6480deaf27
commit
67e7a3631d
@@ -384,7 +384,7 @@ class WorkerTest(ZulipTestCase):
|
||||
self.assertEqual(mock_mirror_email.call_count, 4)
|
||||
mock_warn.assert_called_with(
|
||||
"Deadlock trying to incr_ratelimit for %s",
|
||||
"RateLimitedRealmMirror:%s" % (realm.string_id,),
|
||||
f"RateLimitedRealmMirror:{realm.string_id}",
|
||||
)
|
||||
|
||||
def test_email_sending_worker_retries(self) -> None:
|
||||
|
||||
Reference in New Issue
Block a user