Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Koen Eelen committed Aug 6, 2024
1 parent df95787 commit bf25fc1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use App\Domain\Integrations\Repositories\EloquentIntegrationRepository;
use App\Domain\Integrations\Repositories\EloquentUdbOrganizerRepository;
use App\Domain\Integrations\UdbOrganizer;
use App\Domain\Integrations\UdbOrganizerCollection;
use App\Domain\Integrations\UdbOrganizers;
use App\Domain\Integrations\Website;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Foundation\Testing\RefreshDatabase;
Expand Down Expand Up @@ -343,7 +343,7 @@ public function test_it_can_request_activation(): void

$this->integrationRepository->save($searchIntegration);

$organizers = new UdbOrganizerCollection(
$organizers = new UdbOrganizers(
[new UdbOrganizer(
Uuid::uuid4(),
Uuid::uuid4(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use App\Domain\Integrations\Repositories\EloquentUdbOrganizerRepository;
use App\Domain\Integrations\UdbOrganizer;
use App\Domain\Integrations\UdbOrganizerCollection;
use App\Domain\Integrations\UdbOrganizers;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Ramsey\Uuid\Uuid;
use Tests\TestCase;
Expand Down Expand Up @@ -51,7 +51,7 @@ public function testCreate(): void

public function testCreateInBulk(): void
{
$organizers = new UdbOrganizerCollection([
$organizers = new UdbOrganizers([
$this->organizer1,
$this->organizer2,
]);
Expand Down

0 comments on commit bf25fc1

Please sign in to comment.