From ca439ad56982f0a9a06541c087af10c0516d37be Mon Sep 17 00:00:00 2001 From: Kostiantyn Miakshyn Date: Fri, 20 Dec 2024 16:38:24 +0100 Subject: [PATCH] Slugify Collectives and Pages (tests) Signed-off-by: Kostiantyn Miakshyn --- tests/Unit/Service/CollectiveServiceTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/Service/CollectiveServiceTest.php b/tests/Unit/Service/CollectiveServiceTest.php index f9be10dc3..7e49d9879 100644 --- a/tests/Unit/Service/CollectiveServiceTest.php +++ b/tests/Unit/Service/CollectiveServiceTest.php @@ -213,7 +213,7 @@ public function testCreate(): void { ->willReturn($collective); [$collective, $info] = $this->service->createCollective($this->userId, 'de', 'free'); self::assertIsCallable([$collective, 'jsonSerialize']); - self::assertEqualsCanonicalizing([ + self::assertEquals([ 'id' => 123, 'slug' => 'free', 'circleId' => null,