From 191a31e0a51b7075cdd8dfc7bec403c9a2accd5f Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 2 Aug 2020 20:34:16 +1000 Subject: [PATCH] Fixes for tests --- tests/Feature/GroupSettingTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Feature/GroupSettingTest.php b/tests/Feature/GroupSettingTest.php index d720bd823422..6221ce8e6783 100644 --- a/tests/Feature/GroupSettingTest.php +++ b/tests/Feature/GroupSettingTest.php @@ -88,8 +88,8 @@ class GroupSettingTest extends TestCase $response->assertStatus(200); $arr = $response->json(); - - $this->assertNotNull($arr['data']['archived_at']); + + $this->assertNotNull($arr['data'][0]['archived_at']); } }