Skip to content

Commit

Permalink
fix cron command test
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Oct 30, 2021
1 parent 5ab7961 commit bfec834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Console/System/CronjobExecuteCommandTest.php
Expand Up @@ -56,7 +56,7 @@ public function testCommand()

$cronjob = $this->connection->fetchAssoc('SELECT * FROM fusio_cronjob WHERE name = :name', ['name' => 'Test-Cron']);

$this->assertEquals(4, $cronjob['id']);
$this->assertEquals(5, $cronjob['id']);
$this->assertEquals(1, $cronjob['status']);
$this->assertEquals('Test-Cron', $cronjob['name']);
$this->assertEquals('*/30 * * * *', $cronjob['cron']);
Expand Down

0 comments on commit bfec834

Please sign in to comment.