From 9c7d7cf82a3556398e6f9a5e0722c2e113bf87f1 Mon Sep 17 00:00:00 2001 From: TanyaAgarwal28 <8979149361t@gmail.com> Date: Wed, 11 Oct 2023 10:55:21 +0530 Subject: [PATCH] Bug Fix 11282: config.getini returns an empty list for an option of type string absent in INI file --- testing/test_conftest.py | 1 - 1 file changed, 1 deletion(-) diff --git a/testing/test_conftest.py b/testing/test_conftest.py index 6c8072019..5d5407717 100644 --- a/testing/test_conftest.py +++ b/testing/test_conftest.py @@ -382,7 +382,6 @@ def test_my_option(pytester): encoding="utf-8", ) result = pytester.runpytest("--my_option=None", str(testdir)) - assert result.ret == 0 result.stdout.fnmatch_lines(["*1 passed*"])