diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-10-24 19:52:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-24 19:52:23 +0200 |
commit | 93d5500f9aada67e3adef585438aec5382de75ff (patch) | |
tree | 2a1c618343fd8b241a1531303eb4fa22659801c6 /tests/Settings/Controller/CertificateControllerTest.php | |
parent | f368481c2395cf5e973def65b75d11d2010cf3fa (diff) | |
parent | 43e498844e8c1aa519a19238d2cf3d6b95e1aab0 (diff) | |
download | nextcloud-server-93d5500f9aada67e3adef585438aec5382de75ff.tar.gz nextcloud-server-93d5500f9aada67e3adef585438aec5382de75ff.zip |
Merge pull request #6934 from nextcloud/class-usage-in-mocks
Use ::class in test mocks
Diffstat (limited to 'tests/Settings/Controller/CertificateControllerTest.php')
-rw-r--r-- | tests/Settings/Controller/CertificateControllerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Settings/Controller/CertificateControllerTest.php b/tests/Settings/Controller/CertificateControllerTest.php index 48d34a1542b..fb5076dc012 100644 --- a/tests/Settings/Controller/CertificateControllerTest.php +++ b/tests/Settings/Controller/CertificateControllerTest.php @@ -51,10 +51,10 @@ class CertificateControllerTest extends \Test\TestCase { public function setUp() { parent::setUp(); - $this->request = $this->getMockBuilder('\OCP\IRequest')->getMock(); + $this->request = $this->getMockBuilder(IRequest::class)->getMock(); $this->certificateManager = $this->getMockBuilder('\OCP\ICertificateManager')->getMock(); $this->systemCertificateManager = $this->getMockBuilder('\OCP\ICertificateManager')->getMock(); - $this->l10n = $this->getMockBuilder('\OCP\IL10N')->getMock(); + $this->l10n = $this->getMockBuilder(IL10N::class)->getMock(); $this->appManager = $this->getMockBuilder('OCP\App\IAppManager')->getMock(); $this->certificateController = $this->getMockBuilder('OC\Settings\Controller\CertificateController') |