From 8cf79176bcdb4e125aec9ef814d0179b35b12bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 12 Nov 2018 12:59:34 +0100 Subject: [PATCH] Fix: Add test case for Url::combine() --- tests/UrlTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/UrlTest.php b/tests/UrlTest.php index 22bf7e495..cf8d88e96 100644 --- a/tests/UrlTest.php +++ b/tests/UrlTest.php @@ -175,6 +175,7 @@ public function urlCombineDataProvider() ['http://api.flickr.com/services/', 'http://www.flickr.com/services/oauth/access_token', 'http://www.flickr.com/services/oauth/access_token'], ['https://www.example.com/path', '//foo.com/abc', 'https://foo.com/abc'], ['https://www.example.com/0/', 'relative/foo', 'https://www.example.com/0/relative/foo'], + ['https://www.example.com/0', 'relative/foo', 'https://www.example.com/relative/foo'], ['', '0', '0'], // RFC 3986 test cases [self::RFC3986_BASE, 'g:h', 'g:h'],