Skip to content

Commit 46929e0

Browse files
committed
Fixing CI
1 parent 805e3e6 commit 46929e0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pkg/gps/Tests/GpsProducerTest.php

+5-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@ public function testShouldSendMessage()
3333
$gtopic
3434
->expects($this->once())
3535
->method('publish')
36-
->with($this->identicalTo(['data' => '{"body":"","properties":[],"headers":[]}']))
37-
;
36+
->with($this->identicalTo([
37+
'data' => '{"body":"","properties":[],"headers":[]}',
38+
'attributes' => [],
39+
])
40+
);
3841

3942
$client = $this->createPubSubClientMock();
4043
$client

0 commit comments

Comments
 (0)