Bug Fix 11282: config.getini returns an empty list for an option of type string absent in INI file

This commit is contained in:
TanyaAgarwal28 2023-10-11 12:20:07 +05:30
parent 6c1eaf6e7f
commit 9629387e9a
1 changed files with 0 additions and 11 deletions

View File

@ -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