Skip to content

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsn committed Nov 11, 2023
1 parent 42b670a commit ba832bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/DatabaseHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public function testPushWithTooLongQueueNameException()
$this->expectExceptionMessage('The queue name is too long. It should be no longer than 64 letters.');

$handler = new DatabaseHandler($this->config);
$handler->push(str_repeat('a',65), 'success', ['key' => 'value']);
$handler->push(str_repeat('a', 65), 'success', ['key' => 'value']);
}

/**
Expand Down

0 comments on commit ba832bc

Please sign in to comment.