Skip to content

Commit cebb89f

Browse files
committed
Using the assertSame and fix assertSame parameters
1 parent d1cffc1 commit cebb89f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/NewCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function test_it_can_scaffold_a_new_laravel_app()
2323

2424
$statusCode = $tester->execute(['name' => $scaffoldDirectoryName]);
2525

26-
$this->assertEquals($statusCode, 0);
26+
$this->assertSame(0, $statusCode);
2727
$this->assertDirectoryExists($scaffoldDirectory.'/vendor');
2828
$this->assertFileExists($scaffoldDirectory.'/.env');
2929
}

0 commit comments

Comments
 (0)