Skip to content

Commit

Permalink
edited test
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin Wagner committed Feb 14, 2018
1 parent 558ac00 commit 4e389c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/File/FileUtilTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ public function testGetFileList()
$this->assertCount(3, $fileList);
$this->assertArrayHasKey(0, $fileList);
$this->assertArrayHasKey('filename', $fileList[0]);
$this->assertSame('testfile3', $fileList[0]['filename']);
$this->assertNotSame('', $fileList[0]['filename']);
$this->assertArrayHasKey(1, $fileList);
$this->assertArrayHasKey('filename', $fileList[1]);
$this->assertSame('testfile2', $fileList[1]['filename']);
$this->assertNotSame('', $fileList[1]['filename']);
$this->assertArrayHasKey(2, $fileList);
$this->assertArrayHasKey('filename', $fileList[2]);
$this->assertSame('testfile1', $fileList[2]['filename']);
$this->assertNotSame('', $fileList[2]['filename']);

$fileList = $fileUtil->getFileList($this->getTempDir().'/fileList', __DIR__);

Expand Down

0 comments on commit 4e389c2

Please sign in to comment.