From adf7082614935b05cd71857bf9187a627b4157a2 Mon Sep 17 00:00:00 2001 From: Sebastian Almberg <83243306+Sebbeben@users.noreply.github.com> Date: Thu, 12 Mar 2026 14:18:17 +0100 Subject: [PATCH] Fix duplicate test method names in bulk import tests --- tests/Controller/BulkInfoProviderImportControllerTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Controller/BulkInfoProviderImportControllerTest.php b/tests/Controller/BulkInfoProviderImportControllerTest.php index c3968579..a96636b9 100644 --- a/tests/Controller/BulkInfoProviderImportControllerTest.php +++ b/tests/Controller/BulkInfoProviderImportControllerTest.php @@ -1327,7 +1327,7 @@ final class BulkInfoProviderImportControllerTest extends WebTestCase $this->assertResponseStatusCodeSame(Response::HTTP_NOT_FOUND); } - public function testMarkPartCompleted(): void + public function testMarkPartCompletedAutoCompletesJob(): void { $client = static::createClient(); $this->loginAsUser($client, 'admin'); @@ -1354,7 +1354,7 @@ final class BulkInfoProviderImportControllerTest extends WebTestCase $this->cleanupJob($entityManager, $jobId); } - public function testMarkPartSkipped(): void + public function testMarkPartSkippedWithReason(): void { $client = static::createClient(); $this->loginAsUser($client, 'admin'); @@ -1382,7 +1382,7 @@ final class BulkInfoProviderImportControllerTest extends WebTestCase $this->cleanupJob($entityManager, $jobId); } - public function testMarkPartPending(): void + public function testMarkPartPendingAfterCompleted(): void { $client = static::createClient(); $this->loginAsUser($client, 'admin'); @@ -1744,7 +1744,7 @@ final class BulkInfoProviderImportControllerTest extends WebTestCase $this->assertNull($entityManager->find(BulkInfoProviderImportJob::class, $jobId)); } - public function testStep2WithNonExistentJob(): void + public function testStep2RedirectsForNonExistentJob(): void { $client = static::createClient(); $this->loginAsUser($client, 'admin');