test: mark f-string with f prefix in test_expunged

This one was not marked accidentally.
This commit is contained in:
link2xt
2026-02-19 16:27:54 +00:00
committed by l
parent 2ce9e5fe78
commit 7a6ed8340e

View File

@@ -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):