From 12eb739ff0fd8f771926581a7bcd08eabe2ddb40 Mon Sep 17 00:00:00 2001 From: TanyaAgarwal28 <8979149361t@gmail.com> Date: Wed, 11 Oct 2023 11:07:50 +0530 Subject: [PATCH] Bug Fix 11282: config.getini returns an empty list for an option of type string absent in INI file --- testing/acceptance_test.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/testing/acceptance_test.py b/testing/acceptance_test.py index 7d1f0d5f9..429fb4e43 100644 --- a/testing/acceptance_test.py +++ b/testing/acceptance_test.py @@ -341,19 +341,6 @@ class TestGeneralUsage: assert res.ret == 0 res.stdout.fnmatch_lines(["*1 passed*"]) - def test_direct_addressing_selects_duplicates_2(self, pytester: Pytester) -> None: - p = pytester.makepyfile( - """ - import pytest - - @pytest.mark.parametrize("a", ["a","b","c","a","a1"]) - def test_func(a): - pass - """ - ) - result = pytester.runpytest(p) - result.assert_outcomes(failed=0, passed=5) - def test_direct_addressing_notfound(self, pytester: Pytester) -> None: p = pytester.makepyfile( """