Skip to content

Commit

Permalink
Merge pull request #601 from andriokha/avoid-whitespace-in-tags-600
Browse files Browse the repository at this point in the history
#600: Avoid whitespace in tags
jhedstrom authored Apr 26, 2022

Unverified

The email in this signature doesn’t match the committer email.
2 parents 971b9e1 + 27e1482 commit cf37e2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Drupal/DrupalExtension/Context/MailContext.php
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ public function enableMail($event)
* Allow opting in to mail collection. When using the default mail manager
* service, it is not necessary to use this tag.
*
* @BeforeScenario @mail @email
* @BeforeScenario @mail,@email
*/
public function collectMail()
{
@@ -54,7 +54,7 @@ public function collectMail()
/**
* Stop collecting mail at scenario end.
*
* @AfterScenario @mail @email
* @AfterScenario @mail,@email
*/
public function stopCollectingMail()
{
@@ -143,7 +143,7 @@ public function noNewMailIsSent($count, $to = '', $subject = '')
$count = $count === 'an' ? 1 : $count;
$this->assertMailCount($actualMail, $count);
}

/**
* @When I follow the link to :urlFragment from the (e)mail
* @When I follow the link to :urlFragment from the (e)mail to :to

0 comments on commit cf37e2d

Please sign in to comment.