From 0bcbaec79f3bf250e6d7d53e891b790b1316d9a3 Mon Sep 17 00:00:00 2001 From: Adrian Hopek Date: Tue, 22 Feb 2022 09:49:53 +0100 Subject: [PATCH] #38 - fix --- tests/Feature/VacationRequestTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/Feature/VacationRequestTest.php b/tests/Feature/VacationRequestTest.php index 5cdc484..243dd1e 100644 --- a/tests/Feature/VacationRequestTest.php +++ b/tests/Feature/VacationRequestTest.php @@ -107,7 +107,6 @@ class VacationRequestTest extends FeatureTestCase $this->actingAs($creator) ->post("/vacation-requests", [ "user" => $user->id, - "creator_id" => $creator->id, "type" => VacationType::Vacation->value, "from" => Carbon::create($currentYearPeriod->year, 2, 7)->toDateString(), "to" => Carbon::create($currentYearPeriod->year, 2, 11)->toDateString(), @@ -147,7 +146,6 @@ class VacationRequestTest extends FeatureTestCase $this->actingAs($creator) ->post("/vacation-requests", [ "user" => $user->id, - "creator_id" => $creator->id, "type" => VacationType::Vacation->value, "from" => Carbon::create($currentYearPeriod->year, 2, 7)->toDateString(), "to" => Carbon::create($currentYearPeriod->year, 2, 11)->toDateString(),