From: gggeek Date: Sat, 11 Jul 2015 23:45:23 +0000 (+0100) Subject: 2nd try at test stabilization X-Git-Tag: 4.0.0-alpha^2~13 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=390edf48f54b0f0645cf7882146a9e117a2099c4 2nd try at test stabilization --- diff --git a/tests/3LocalhostTest.php b/tests/3LocalhostTest.php index 9d848ab..ca2e631 100644 --- a/tests/3LocalhostTest.php +++ b/tests/3LocalhostTest.php @@ -194,7 +194,7 @@ class LocalhostTest extends PHPUnit_Framework_TestCase return; } $sendString = 'κόσμε'; // Greek word 'kosme'. NB: NOT a valid ISO8859 string! - $str = ' + $str = ' examples.stringecho @@ -204,10 +204,9 @@ class LocalhostTest extends PHPUnit_Framework_TestCase '; - // these calls will have no charset declaration in either http headers or xml prolog - $v = $this->send(mb_convert_encoding($str, 'UCS-4', 'UTF-8')); + $v = $this->send(mb_convert_encoding(str_replace('_ENC_', 'UCS-4', $str), 'UCS-4', 'UTF-8')); $this->assertEquals($sendString, $v->scalarval()); - $v = $this->send(mb_convert_encoding($str, 'UTF-16', 'UTF-8')); + $v = $this->send(mb_convert_encoding(str_replace('_ENC_', 'UTF-16', $str), 'UTF-16', 'UTF-8')); $this->assertEquals($sendString, $v->scalarval()); }