Skip to content

Commit

Permalink
fixup! fixup! Require a recent phpunit version in integration and acc…
Browse files Browse the repository at this point in the history
…eptance

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
  • Loading branch information
danxuliu committed Mar 31, 2022
1 parent f680193 commit ea5770d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/acceptance/features/bootstrap/PublicShareContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public function iSeeThatTheShareMenuButtonIsNotShown() {
* @Then I see that the shared file preview shows the text :text
*/
public function iSeeThatTheSharedFilePreviewShowsTheText($text) {
Assert::assertContains($text, $this->actor->find(self::textPreview(), 10)->getText());
Assert::assertStringContainsString($text, $this->actor->find(self::textPreview(), 10)->getText());
}

/**
Expand Down

0 comments on commit ea5770d

Please sign in to comment.