From bc631d7d8bb798d00d1bb312a16b6d12b6d48bb3 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 30 Sep 2015 21:17:27 +0200 Subject: [PATCH] Fix configtypes test coverage --- tests/unit/config/test_configtypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/config/test_configtypes.py b/tests/unit/config/test_configtypes.py index 360bb2ed9..5ce2a321f 100644 --- a/tests/unit/config/test_configtypes.py +++ b/tests/unit/config/test_configtypes.py @@ -1921,7 +1921,7 @@ class TestURLSegmentList: klass(none_ok=False).validate('') @pytest.mark.parametrize('val', [ - 'foo', 'bar', 'foo,bar', 'host,path,foo', 'host,host' + 'foo', 'bar', 'foo,bar', 'host,path,foo', 'host,host', 'host,', ]) def test_validate_invalid(self, klass, val): with pytest.raises(configexc.ValidationError):