Skip to content

Commit

Permalink
[TASK] Switch wrong named acceptance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
derhansen committed Jun 15, 2024
1 parent fe1f572 commit de71a43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Acceptance/AbstractEventsTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ public function registrationForExpiredEventNotPossible(AcceptanceTester $I)
{
$I->amOnPage($this->basePath . 'event-list-all');
$I->click('Expired Event (reg, cat1) ' . $this->lang);
$I->seeInTitle('Expired Event (reg, cat1) ' . $this->lang);
$I->dontSee('Registration', 'a');
}

public function eventTitleShownAsTitleTag(AcceptanceTester $I)
{
$I->amOnPage($this->basePath . 'event-list-all');
$I->click('Expired Event (reg, cat1) ' . $this->lang);
$I->dontSee('Registration', 'a');
$I->seeInTitle('Expired Event (reg, cat1) ' . $this->lang);
}

public function validationWorksForSimpleEvent(AcceptanceTester $I)
Expand Down

0 comments on commit de71a43

Please # to comment.