diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-30 16:13:16 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2022-05-24 18:54:29 +0200 |
commit | 8951f069fef6916bd293d278c2491b82bc349fc1 (patch) | |
tree | d452f49ff9b08b2797d244bb5634f28f7b6d14d5 /build/integration/features/bootstrap/CommandLineContext.php | |
parent | 53577ab34ae3e59b62fb57d35112b8f8d49d6de3 (diff) | |
download | nextcloud-server-8951f069fef6916bd293d278c2491b82bc349fc1.tar.gz nextcloud-server-8951f069fef6916bd293d278c2491b82bc349fc1.zip |
Require a recent phpunit version in integration and acceptance
Otherwise build with PHP>8 will fail as PHPUnit 6 does not support it
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'build/integration/features/bootstrap/CommandLineContext.php')
-rw-r--r-- | build/integration/features/bootstrap/CommandLineContext.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/integration/features/bootstrap/CommandLineContext.php b/build/integration/features/bootstrap/CommandLineContext.php index 41756e448bf..afe17cd75a4 100644 --- a/build/integration/features/bootstrap/CommandLineContext.php +++ b/build/integration/features/bootstrap/CommandLineContext.php @@ -147,6 +147,6 @@ class CommandLineContext implements \Behat\Behat\Context\Context { * @Then /^transfer folder name contains "([^"]+)"$/ */ public function transferFolderNameContains($text) { - Assert::assertContains($text, $this->lastTransferPath); + Assert::assertStringContainsString($text, $this->lastTransferPath); } } |