Skip to content

Commit 4697746

Browse files
Synchrochristophrumpel
authored andcommitted
Use static value as expected
1 parent bcccd75 commit 4697746

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/TwitterStatusUpdateTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ public function it_constructs_a_request_body(): void
5454
$message = new TwitterStatusUpdate('myMessage');
5555
$message->imageIds = collect([434, 435, 436]);
5656

57-
$this->assertEquals($message->getRequestBody(), [
57+
$this->assertEquals([
5858
'status' => 'myMessage',
5959
'media_ids' => '434,435,436',
60-
]);
60+
], $message->getRequestBody());
6161
}
6262

6363
/** @test */

0 commit comments

Comments
 (0)