From f87bd205556657725a1433fc8cdd56dd79e1e1ca Mon Sep 17 00:00:00 2001 From: NanoCode012 Date: Sun, 28 May 2023 23:35:29 +0900 Subject: [PATCH] Fix incorrect syntax in test --- tests/test_dict.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_dict.py b/tests/test_dict.py index aea932a16..81a528fe4 100644 --- a/tests/test_dict.py +++ b/tests/test_dict.py @@ -28,9 +28,8 @@ class DictDefaultTest(unittest.TestCase): ), "DictDefault should return value for existing keys in list" assert ( - "value_e" in cfg.key_d, - "DictDefault should support in operator for existing keys in list", - ) + "value_e" in cfg.key_d + ), "DictDefault should support in operator for existing keys in list" def test_dict_or_operator(self): cfg = DictDefault(