Skip to content

Commit 509f3a6

Browse files
committed
CS: Convert double quotes to single quotes
1 parent 97f661a commit 509f3a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/FinderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ public function testRelativePath($adapter)
381381
$paths[] = $file->getRelativePath();
382382
}
383383

384-
$ref = array("", "", "", "", "foo", "");
384+
$ref = array('', '', '', '', 'foo', '');
385385

386386
sort($ref);
387387
sort($paths);
@@ -402,7 +402,7 @@ public function testRelativePathname($adapter)
402402
$paths[] = $file->getRelativePathname();
403403
}
404404

405-
$ref = array("test.php", "toto", "test.py", "foo", "foo".DIRECTORY_SEPARATOR."bar.tmp", "foo bar");
405+
$ref = array('test.php', 'toto', 'test.py', 'foo', 'foo'.DIRECTORY_SEPARATOR.'bar.tmp', 'foo bar');
406406

407407
sort($paths);
408408
sort($ref);

0 commit comments

Comments
 (0)