We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4173b9b commit e93cce8Copy full SHA for e93cce8
tests/Integration/CustomOrderTest.php
@@ -32,7 +32,10 @@ public function it_can_order_with_custom_order()
32
'recordsFiltered' => 60,
33
]);
34
35
- $this->assertEquals($response->json()['data'][0]['user']['id'], collect($response->json()['data'])->pluck('user.id')->max());
+ $this->assertEquals(
36
+ $response->json()['data'][0]['user']['id'],
37
+ collect($response->json()['data'])->pluck('user.id')->max()
38
+ );
39
}
40
41
protected function getJsonResponse(array $params = [])
0 commit comments