From 8f48247b8fce88f6ab6bf708def64c1910b8afb0 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 23 Jul 2015 23:25:56 +0200 Subject: [PATCH] configtypes: Add invalid URL for TestUrlList. --- tests/config/test_configtypes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/config/test_configtypes.py b/tests/config/test_configtypes.py index 0461a67c3..22874f12b 100644 --- a/tests/config/test_configtypes.py +++ b/tests/config/test_configtypes.py @@ -1580,6 +1580,7 @@ class TestUrlList: @pytest.mark.parametrize('val', [ '', 'foo,,bar', + '+', # invalid URL with QUrl.fromUserInput ]) def test_validate_invalid(self, klass, val): with pytest.raises(configexc.ValidationError):