From ffd67feb6a4dab6a29cb70bc70e903497256c368 Mon Sep 17 00:00:00 2001 From: Philipp Lang Date: Tue, 14 Feb 2023 14:32:34 +0100 Subject: [PATCH] Fixed Activity Index --- tests/Feature/Activity/IndexTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/Activity/IndexTest.php b/tests/Feature/Activity/IndexTest.php index 0943771b..3149c155 100644 --- a/tests/Feature/Activity/IndexTest.php +++ b/tests/Feature/Activity/IndexTest.php @@ -12,7 +12,7 @@ class IndexTest extends TestCase public function testItDisplaysLocalActivities(): void { - $this->login()->withoutExceptionHandling(); + $this->login()->loginNami()->withoutExceptionHandling(); $local = Activity::factory()->name('Local')->create(); $remote = Activity::factory()->name('Remote')->inNami(123)->create();