Skip to content

Commit

Permalink
Using the assertSame and fix assertSame parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
peter279k committed Sep 3, 2020
1 parent d1cffc1 commit cebb89f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/NewCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down

0 comments on commit cebb89f

Please sign in to comment.