From 2421524a1cc1fe536420011d46864a6bdc6d309d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 4 Apr 2022 19:27:59 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_ujson.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ujson.py b/tests/test_ujson.py index bf21f83a..56e7664b 100644 --- a/tests/test_ujson.py +++ b/tests/test_ujson.py @@ -723,7 +723,7 @@ def test_special_singletons(): ) def test_incomplete_special_inputs(test_input, expected_message): with pytest.raises(ujson.JSONDecodeError, match=expected_message): - print("test_input = {!r}".format(test_input)) + print(f"test_input = {test_input!r}") ujson.loads(test_input)