From d658192835863e5599e11ce7dd4da3a11f971b29 Mon Sep 17 00:00:00 2001 From: yutaro-oguri Date: Thu, 19 Oct 2023 11:26:53 +0900 Subject: [PATCH] Fix test case --- test/test_target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_target.py b/test/test_target.py index 4a56e7c6..6a5b0c80 100644 --- a/test/test_target.py +++ b/test/test_target.py @@ -123,7 +123,7 @@ def test_save_and_load_ini(self): obj['DEFAULT'] = {'a': '1', 'b': 'yes', 'c': 2} obj['example'] = {} obj['example']['d'] = 'foo' - obj['example']['e'] = True + obj['example']['e'] = 'true' file_path = os.path.join(_get_temporary_directory(), 'test.ini') target = make_target(file_path=file_path, unique_id=None)