From 6d102d93194754e37b352434cced0f4338ea6d5f Mon Sep 17 00:00:00 2001 From: philipp lang Date: Thu, 29 Aug 2024 22:59:55 +0200 Subject: [PATCH] Fix tests --- tests/EndToEnd/MemberSearchTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/EndToEnd/MemberSearchTest.php b/tests/EndToEnd/MemberSearchTest.php index 10af4ee8..e3f2fca3 100644 --- a/tests/EndToEnd/MemberSearchTest.php +++ b/tests/EndToEnd/MemberSearchTest.php @@ -13,11 +13,11 @@ class MemberSearchTest extends EndToEndTestCase { parent::setUp(); Country::factory()->create(['name' => 'Deutschland']); + $this->withoutExceptionHandling()->login()->loginNami(); } public function testItHandlesFullTextSearch(): void { - $this->withoutExceptionHandling()->login()->loginNami(); Member::factory()->defaults()->count(2)->create(['firstname' => 'Alexander']); Member::factory()->defaults()->create(['firstname' => 'Heinrich']);