From 57d9c196852549cc6de50245d42297d612f00ac8 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 5 Nov 2020 21:54:48 +0100 Subject: [PATCH] [CI] Fixed invalid doctrine parameter syntax --- Tests/Transport/Doctrine/DoctrineIntegrationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Transport/Doctrine/DoctrineIntegrationTest.php b/Tests/Transport/Doctrine/DoctrineIntegrationTest.php index e88e0036..d0b53138 100644 --- a/Tests/Transport/Doctrine/DoctrineIntegrationTest.php +++ b/Tests/Transport/Doctrine/DoctrineIntegrationTest.php @@ -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());