diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-12-04 12:16:33 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-12-04 12:16:33 +0100 |
commit | 81541c56b6e489c14287e99cff239a89d9553e49 (patch) | |
tree | 47eac3e5cbf8881782cf4036ed42619e0ede3939 /tests | |
parent | b3515a98e98e1403a841f435cfcd5058053dd4e1 (diff) | |
download | nextcloud-server-81541c56b6e489c14287e99cff239a89d9553e49.tar.gz nextcloud-server-81541c56b6e489c14287e99cff239a89d9553e49.zip |
Add test for IPv6 without port
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/request.php | 3 |
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]') ); } |