From 9629387e9a5604603f8f1b926690e9b3e3c828fa Mon Sep 17 00:00:00 2001 From: TanyaAgarwal28 <8979149361t@gmail.com> Date: Wed, 11 Oct 2023 12:20:07 +0530 Subject: [PATCH] Bug Fix 11282: config.getini returns an empty list for an option of type string absent in INI file --- testing/test_python.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 testing/test_python.py diff --git a/testing/test_python.py b/testing/test_python.py deleted file mode 100644 index 117571bc1..000000000 --- a/testing/test_python.py +++ /dev/null @@ -1,11 +0,0 @@ -import pytest - -@pytest.mark.parametrize("a", [1, 2, 10, 11, 2, 1, 12, 11,2_1]) -def test_params(a): - print('a:', a) - assert a > 0 - -@pytest.mark.parametrize("a", [1, 2, 10, 11, 2, 1, 12, 11]) -def test_params(a): - print('a:', a) - assert a > 0