We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03c8f4c commit aae2264Copy full SHA for aae2264
tests/Feature/HttpLogTest.php
@@ -13,7 +13,7 @@ class HttpLogTest extends TestCase
13
{
14
public function testLog()
15
16
- $this->assertFileDoesNotExist(storage_path('logs/laravel.log'));
+ $this->assertFalse(file_exists(storage_path('logs/laravel.log')));
17
18
$this->post(self::TEST_URI)
19
->assertJson(['health' => 1]);
tests/Feature/QueryLogTest.php
@@ -14,7 +14,7 @@ class QueryLogTest extends TestCase
$this->loadMigrationsFrom(base_path('tests/migrations'));
20
0 commit comments