diff --git a/tests/NewCommandTest.php b/tests/NewCommandTest.php index 0163bc4f..7c12fbd5 100644 --- a/tests/NewCommandTest.php +++ b/tests/NewCommandTest.php @@ -23,7 +23,7 @@ public function test_it_can_scaffold_a_new_laravel_app() $statusCode = $tester->execute(['name' => $scaffoldDirectoryName]); - $this->assertEquals($statusCode, 0); + $this->assertSame(0, $statusCode); $this->assertDirectoryExists($scaffoldDirectory.'/vendor'); $this->assertFileExists($scaffoldDirectory.'/.env'); }