remove a debug

This commit is contained in:
Andy Miller
2024-01-05 12:26:08 +00:00
parent a0e728b540
commit b3d55ca81a

View File

@@ -72,7 +72,6 @@ class SchedulerTest extends \Codeception\Test\Unit
$this->scheduler->run($date, false, true);
$this->assertFileExists($this->statusFilePath);
$this->assertFileIsReadable($this->statusFilePath);
dump(file_get_contents($this->statusFilePath));
foreach ($jobs as $id => $job) {
$this->assertStringContainsString($id, file_get_contents($this->statusFilePath));
}