1
0
Fork 0

Fix for failing tests #41

pull/44/head
Michal Niewrzal 2016-10-02 20:08:46 +02:00
parent 0c758ec815
commit dfe211b46c
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ class RecursiveFileSearchTest extends TestCase
{ {
$path = realpath(__DIR__ . '/../../fixtures/recursive'); $path = realpath(__DIR__ . '/../../fixtures/recursive');
$files = \LanguageServer\findFilesRecursive($path, '/.+\.txt/'); $files = \LanguageServer\findFilesRecursive($path, '/.+\.txt/');
sort($files);
$this->assertEquals([ $this->assertEquals([
$path . DIRECTORY_SEPARATOR . 'a.txt', $path . DIRECTORY_SEPARATOR . 'a.txt',
$path . DIRECTORY_SEPARATOR . 'search' . DIRECTORY_SEPARATOR . 'b.txt', $path . DIRECTORY_SEPARATOR . 'search' . DIRECTORY_SEPARATOR . 'b.txt',