Skip to content

Commit d6d98af

Browse files
committed
CS fix
1 parent 5c29024 commit d6d98af

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

tests/Feature/ChartsTest.php

+2-7
Original file line numberDiff line numberDiff line change
@@ -266,18 +266,13 @@ public function testToJson()
266266

267267
$response = $chart->toJson();
268268

269-
$this->assertEquals(
270-
[
269+
$this->assertEquals([
271270
'id',
272271
'height',
273272
'width',
274273
'type',
275274
'options',
276275
'series',
277-
],
278-
array_keys(
279-
json_decode($response->content(), true)
280-
)
281-
);
276+
], array_keys(json_decode($response->content(), true)));
282277
}
283278
}

0 commit comments

Comments
 (0)