From 644c658e750f3555a8700712f5a58f2c3ecf09cd Mon Sep 17 00:00:00 2001 From: giacomo Date: Thu, 28 Apr 2022 14:52:08 +0100 Subject: [PATCH] no need to use f-string --- tests/debugpy/common/test_messaging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/debugpy/common/test_messaging.py b/tests/debugpy/common/test_messaging.py index 1112bfef..335a5ead 100644 --- a/tests/debugpy/common/test_messaging.py +++ b/tests/debugpy/common/test_messaging.py @@ -666,7 +666,7 @@ class TestTypeConversion(object): for val_trial, type_trial in correct_trials: assert isinstance( json.of_type(type_trial)(val_trial), type_trial - ), f"Wrong type coversion" + ), "Wrong type coversion" # test conversion that are not expected to work try: