Skip to content

Commit

Permalink
[CI] Fixed invalid doctrine parameter syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm committed Nov 5, 2020
1 parent 07dde3a commit 57d9c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Transport/Doctrine/DoctrineIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function testSendWithDelay()
->select('m.available_at')
->from('messenger_messages', 'm')
->where('m.body = :body')
->setParameter(':body', '{"message": "Hi i am delayed"}')
->setParameter('body', '{"message": "Hi i am delayed"}')
->execute();

$available_at = new \DateTime($stmt instanceof Result || $stmt instanceof DriverResult ? $stmt->fetchOne() : $stmt->fetchColumn());
Expand Down

0 comments on commit 57d9c19

Please sign in to comment.