aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorArthur <arthur@hoa.ro>2016-05-05 13:31:13 +0200
committerArthur <arthur@hoa.ro>2016-05-05 13:31:13 +0200
commit501939622af1fd99d77c7bd87d88f27cc4139b21 (patch)
tree7fcd56578f8e570a7517648c82abe29af4ec8593 /tests
parent86deafe0ff5a22a37255546cf82325e89bf272b1 (diff)
parentcaa69b585381cc1c22df3dbb9c943855b8f13a70 (diff)
downloadShaarli-501939622af1fd99d77c7bd87d88f27cc4139b21.tar.gz
Shaarli-501939622af1fd99d77c7bd87d88f27cc4139b21.tar.zst
Shaarli-501939622af1fd99d77c7bd87d88f27cc4139b21.zip
Merge pull request #553 from ArthurHoaro/typo
typo
Diffstat (limited to 'tests')
-rw-r--r--tests/Url/UrlTest.php4
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}