Browse Source

Add test for IPv6 without port

tags/v8.0.0alpha1
Lukas Reschke 9 years ago
parent
commit
81541c56b6
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      tests/lib/request.php

+ 2
- 1
tests/lib/request.php View File

@@ -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]')
);
}


Loading…
Cancel
Save