Merge pull request #10055 from jrfnl/feature/php-8.1-fix-missing-mock-expectation
PHP 8.1/LibraryInstallerTest: add missing mock expectationpull/10065/head
commit
9708f4568f
|
@ -201,6 +201,10 @@ class LibraryInstallerTest extends TestCase
|
|||
->expects($this->any())
|
||||
->method('getPrettyName')
|
||||
->will($this->returnValue('pkg'));
|
||||
$package
|
||||
->expects($this->any())
|
||||
->method('getName')
|
||||
->will($this->returnValue('pkg'));
|
||||
|
||||
$this->repository
|
||||
->expects($this->exactly(2))
|
||||
|
|
Loading…
Reference in New Issue