diff options
author | Florian Bruhin <me@the-compiler.org> | 2019-12-23 15:43:23 +0100 |
---|---|---|
committer | Florian Bruhin <me@the-compiler.org> | 2019-12-23 15:43:23 +0100 |
commit | 86fca3e99ee4836f5f591831eb93a09ffb8231d2 (patch) | |
tree | 3d27993d9c4a964005b7ea4e461b258dd7a7e574 /tests/unit/utils | |
parent | 1be156d289182ad91d1bdca08549027ea3653fad (diff) | |
parent | aaf5d10cf1ec4816a4a60dc5f8e031a0fd82c2c7 (diff) | |
download | qutebrowser-86fca3e99ee4836f5f591831eb93a09ffb8231d2.tar.gz qutebrowser-86fca3e99ee4836f5f591831eb93a09ffb8231d2.zip |
Merge remote-tracking branch 'origin/pr/5139'
Diffstat (limited to 'tests/unit/utils')
-rw-r--r-- | tests/unit/utils/test_urlutils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit/utils/test_urlutils.py b/tests/unit/utils/test_urlutils.py index b6d73319d..49cee6382 100644 --- a/tests/unit/utils/test_urlutils.py +++ b/tests/unit/utils/test_urlutils.py @@ -346,7 +346,9 @@ def test_get_search_url_invalid(url): (True, True, False, '127.0.0.1'), (True, True, False, '::1'), (True, True, True, '2001:41d0:2:6c11::1'), + (True, True, True, '[2001:41d0:2:6c11::1]:8000'), (True, True, True, '94.23.233.17'), + (True, True, True, '94.23.233.17:8000'), # Special URLs (True, True, False, 'file:///tmp/foo'), (True, True, False, 'about:blank'), |