Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-12-04 14:16:33 +0300
committerLukas Reschke <lukas@owncloud.com>2014-12-04 14:16:33 +0300
commit81541c56b6e489c14287e99cff239a89d9553e49 (patch)
tree47eac3e5cbf8881782cf4036ed42619e0ede3939 /tests
parentb3515a98e98e1403a841f435cfcd5058053dd4e1 (diff)
Add test for IPv6 without port
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/request.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/request.php b/tests/lib/request.php
index 3b70ed0ba25..ea3722b90a6 100644
--- a/tests/lib/request.php
+++ b/tests/lib/request.php
@@ -232,7 +232,8 @@ class Test_Request extends \Test\TestCase {
return array(
array('localhost:500', 'localhost'),
array('foo.com', 'foo.com'),
- array('[1fff:0:a88:85a3::ac1f]:801', '[1fff:0:a88:85a3::ac1f]')
+ array('[1fff:0:a88:85a3::ac1f]:801', '[1fff:0:a88:85a3::ac1f]'),
+ array('[1fff:0:a88:85a3::ac1f]', '[1fff:0:a88:85a3::ac1f]')
);
}