From 08957d155d374339cd3a1b29707b531e35b4e640 Mon Sep 17 00:00:00 2001 From: Sami Mazouz Date: Sat, 12 Oct 2024 15:19:07 +0100 Subject: [PATCH] test: fix --- extensions/tags/tests/integration/api/tags/ListTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/tags/tests/integration/api/tags/ListTest.php b/extensions/tags/tests/integration/api/tags/ListTest.php index ac937e6867..68d311aa70 100644 --- a/extensions/tags/tests/integration/api/tags/ListTest.php +++ b/extensions/tags/tests/integration/api/tags/ListTest.php @@ -59,7 +59,7 @@ public function admin_sees_all() $data = json_decode($response->getBody()->getContents(), true)['data']; $ids = Arr::pluck($data, 'id'); - $this->assertEquals(['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14'], $ids); + $this->assertEqualsCanonicalizing(['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14'], $ids); } #[Test]