From 1527ad79e2a6064bc3aed1917bdd8150e67e2cc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 6 Jul 2024 18:39:59 +0200 Subject: [PATCH] [tests] fix syntax for Python < 3.6 no f-strings --- test/test_postprocessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_postprocessor.py b/test/test_postprocessor.py index 25645a52..3e6d1dfa 100644 --- a/test/test_postprocessor.py +++ b/test/test_postprocessor.py @@ -442,7 +442,7 @@ class MetadataTest(BasePostprocessorTest): def test_metadata_directory_format(self): self._create( - {"directory": ["..", "json", "\fF {id // 500 * 500 + 500}"]}, + {"directory": ["..", "json", "\fE str(id // 500 * 500 + 500)"]}, {"id": 12345}, )