Skip to content

Commit 0ca1917

Browse files
committed
Reverting file contents assert
1 parent b46217f commit 0ca1917

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ResourceGeneratorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ public function testOutput()
5858
$objectPath = substr($name, strlen($resourcesPath));
5959

6060
$this->assertFileExists($this->temporaryDirectory . $objectPath);
61-
$this->assertTrue(
62-
file_get_contents($resourcesPath . $objectPath) ==
61+
$this->assertSame(
62+
file_get_contents($resourcesPath . $objectPath),
6363
file_get_contents($this->temporaryDirectory . $objectPath),
6464
$objectPath
6565
);

0 commit comments

Comments
 (0)