Skip to content

Commit

Permalink
fix(behat): phpunit assert type error
Browse files Browse the repository at this point in the history
  • Loading branch information
maxperei committed Jan 23, 2025
1 parent a8c0f85 commit b5b2c4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Behat/Context/Cli/CliContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function iHaveAWorkingCommandLineInterface(): void
*/
public function iShouldSeeInTheMessage(string $messagePart): void
{
Assert::assertContains($messagePart, $this->tester->getDisplay());
Assert::assertStringContainsString($messagePart, $this->tester->getDisplay());
}

/**
Expand Down

0 comments on commit b5b2c4a

Please sign in to comment.