Skip to content

Commit

Permalink
Merge pull request #48 from voku/analysis-qyY2r5
Browse files Browse the repository at this point in the history
Applied fixes from StyleCI
  • Loading branch information
voku committed Oct 19, 2016
2 parents 9179487 + 586215a commit b1c2448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Utf8GlobalTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1849,7 +1849,7 @@ public function testParseStr()
// ---

// test-string
$str = "Iñtërnâtiônàlizætiøn=測試&arr[]=foo+測試&arr[]=ການທົດສອບ";
$str = 'Iñtërnâtiônàlizætiøn=測試&arr[]=foo+測試&arr[]=ການທົດສອບ';

$result = UTF8::parse_str($str, $array, false);

Expand Down Expand Up @@ -2524,7 +2524,7 @@ public function testStripTags()
'<nav>Düsseldorf</nav>' => 'Düsseldorf',
"<ㅡㅡ></ㅡㅡ><div></div><input type='email' name='user[email]' /><a>wtf</a>" => 'wtf',
'<nav>中文空白 </nav>' => '中文空白 ',
"<span>κόσμε</span>-<span>öäü</span>öäü" => '<span>κόσμε</span>-<span>öäü</span>öäü',
'<span>κόσμε</span>-<span>öäü</span>öäü' => '<span>κόσμε</span>-<span>öäü</span>öäü',
);

foreach ($tests as $before => $after) {
Expand Down

0 comments on commit b1c2448

Please sign in to comment.