diff options
Diffstat (limited to 'tests/Url')
-rw-r--r-- | tests/Url/UrlTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Url/UrlTest.php b/tests/Url/UrlTest.php index 5fdc8617..ce82265e 100644 --- a/tests/Url/UrlTest.php +++ b/tests/Url/UrlTest.php | |||
@@ -190,10 +190,10 @@ class UrlTest extends PHPUnit_Framework_TestCase | |||
190 | $ind = 'http://www.académie-française.fr/'; | 190 | $ind = 'http://www.académie-française.fr/'; |
191 | $expected = 'http://www.xn--acadmie-franaise-npb1a.fr/'; | 191 | $expected = 'http://www.xn--acadmie-franaise-npb1a.fr/'; |
192 | $url = new Url($ind); | 192 | $url = new Url($ind); |
193 | $this->assertEquals($expected, $url->indToAscii()); | 193 | $this->assertEquals($expected, $url->idnToAscii()); |
194 | 194 | ||
195 | $notInd = 'http://www.academie-francaise.fr/'; | 195 | $notInd = 'http://www.academie-francaise.fr/'; |
196 | $url = new Url($notInd); | 196 | $url = new Url($notInd); |
197 | $this->assertEquals($notInd, $url->indToAscii()); | 197 | $this->assertEquals($notInd, $url->idnToAscii()); |
198 | } | 198 | } |
199 | } | 199 | } |