From c2dd8a1a07fac3c4e1987c00bdcc5977565ce7f2 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 12 Jun 2025 23:08:04 +0100 Subject: [PATCH] Update event names Make them more realistic and more obvious which is the event date and which is the event name. --- .../tests/src/Functional/PresentationTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/opd_presentations/tests/src/Functional/PresentationTest.php b/modules/opd_presentations/tests/src/Functional/PresentationTest.php index 045e71f6c..bd727fb56 100644 --- a/modules/opd_presentations/tests/src/Functional/PresentationTest.php +++ b/modules/opd_presentations/tests/src/Functional/PresentationTest.php @@ -16,17 +16,17 @@ final class PresentationTest extends ExistingSiteBase { events: [ $this->createEvent( eventDate: 'now', - eventName: 'now', + eventName: 'PHP South West', ), $this->createEvent( eventDate: 'yesterday', - eventName: 'yesterday', + eventName: 'DrupalCon Lille', ), $this->createEvent( eventDate: 'tomorrow', - eventName: 'tomorrow', + eventName: 'PHP Oxford', ), ], ); @@ -40,7 +40,7 @@ final class PresentationTest extends ExistingSiteBase { $this->assertSame( actual: $events->first()->getEventName(), - expected: 'yesterday', + expected: 'DrupalCon Lille', ); }