Skip to content

Commit

Permalink
test: prevent false negatives
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Oct 21, 2024
1 parent b75a51c commit 1584174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/tags/tests/integration/api/tags/ListTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public function guest_cant_see_restricted_or_children_of_restricted()
$data = json_decode($response->getBody()->getContents(), true)['data'];

$ids = Arr::pluck($data, 'id');
$this->assertEquals(['1', '2', '3', '4', '9', '10'], $ids);
$this->assertEqualsCanonicalizing(['1', '2', '3', '4', '9', '10'], $ids);
}

public static function listTagsIncludesDataProvider(): array
Expand Down

0 comments on commit 1584174

Please sign in to comment.