We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da36ee2 commit be91959Copy full SHA for be91959
tests/Feature/ChartsTest.php
@@ -243,7 +243,7 @@ public function testToVue()
243
'type',
244
'options',
245
'series',
246
- ] , array_keys($chart->toVue()));
+ ], array_keys($chart->toVue()));
247
}
248
249
public function testToJson()
@@ -266,15 +266,17 @@ public function testToJson()
266
267
$response = $chart->toJson();
268
269
- $this->assertEquals([
+ $this->assertEquals(
270
+ [
271
'id',
272
'height',
273
'width',
274
275
276
- ] , array_keys(
277
- json_decode($response->content(), true))
+ ], array_keys(
278
+ json_decode($response->content(), true)
279
+ )
280
);
281
282
0 commit comments