From 46929e0e080f41f87cabae9d39ef0d0a9e9698d0 Mon Sep 17 00:00:00 2001 From: philippe PICHET Date: Tue, 2 Jul 2024 16:33:31 +0200 Subject: [PATCH] Fixing CI --- pkg/gps/Tests/GpsProducerTest.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkg/gps/Tests/GpsProducerTest.php b/pkg/gps/Tests/GpsProducerTest.php index 9e39078e4..a677e1328 100644 --- a/pkg/gps/Tests/GpsProducerTest.php +++ b/pkg/gps/Tests/GpsProducerTest.php @@ -33,8 +33,11 @@ public function testShouldSendMessage() $gtopic ->expects($this->once()) ->method('publish') - ->with($this->identicalTo(['data' => '{"body":"","properties":[],"headers":[]}'])) - ; + ->with($this->identicalTo([ + 'data' => '{"body":"","properties":[],"headers":[]}', + 'attributes' => [], + ]) + ); $client = $this->createPubSubClientMock(); $client