Skip to content

Commit

Permalink
Skip DocumentManagerIntegrationTest on PHP 8, some weird dep version …
Browse files Browse the repository at this point in the history
…gets installed causing the test to fail
  • Loading branch information
ondrejmirtes committed Jul 7, 2020
1 parent 50314a9 commit cbe6adf
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ final class DocumentManagerIntegrationTest extends LevelsTestCase
*/
public function dataTopics(): array
{
if (PHP_VERSION_ID >= 80000) {
return [];
}

return [
['documentManagerDynamicReturn'],
['documentRepositoryDynamicReturn'],
Expand Down

0 comments on commit cbe6adf

Please sign in to comment.