Skip to content

Commit

Permalink
CS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Mar 30, 2024
1 parent 5c29024 commit d6d98af
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions tests/Feature/ChartsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,18 +266,13 @@ public function testToJson()

$response = $chart->toJson();

$this->assertEquals(
[
$this->assertEquals([
'id',
'height',
'width',
'type',
'options',
'series',
],
array_keys(
json_decode($response->content(), true)
)
);
], array_keys(json_decode($response->content(), true)));
}
}

0 comments on commit d6d98af

Please sign in to comment.