From 7a6ed8340e1587b57c8c7eb4f077c50feccca3b7 Mon Sep 17 00:00:00 2001 From: link2xt Date: Thu, 19 Feb 2026 16:27:54 +0000 Subject: [PATCH] test: mark f-string with f prefix in test_expunged This one was not marked accidentally. --- cmdeploy/src/cmdeploy/tests/online/test_1_basic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmdeploy/src/cmdeploy/tests/online/test_1_basic.py b/cmdeploy/src/cmdeploy/tests/online/test_1_basic.py index c8525125..af57816e 100644 --- a/cmdeploy/src/cmdeploy/tests/online/test_1_basic.py +++ b/cmdeploy/src/cmdeploy/tests/online/test_1_basic.py @@ -218,7 +218,7 @@ def test_expunged(remote, chatmail_config): ] outdated_days = int(chatmail_config.delete_large_after) + 1 find_cmds.append( - "find {chatmail_config.mailboxes_dir} -path '*/cur/*' -mtime +{outdated_days} -size +200k -type f" + f"find {chatmail_config.mailboxes_dir} -path '*/cur/*' -mtime +{outdated_days} -size +200k -type f" ) for cmd in find_cmds: for line in remote.iter_output(cmd):