Skip to content

Commit

Permalink
Fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
p-pichet committed Jul 2, 2024
1 parent 805e3e6 commit 46929e0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkg/gps/Tests/GpsProducerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 46929e0

Please sign in to comment.