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/lib/HTTPHelperTest.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/lib/HTTPHelperTest.php')
-rw-r--r-- | tests/lib/HTTPHelperTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/HTTPHelperTest.php b/tests/lib/HTTPHelperTest.php index d241acb2f93..d39cc34c464 100644 --- a/tests/lib/HTTPHelperTest.php +++ b/tests/lib/HTTPHelperTest.php @@ -9,6 +9,7 @@ namespace Test; use OCP\Http\Client\IClientService; +use OCP\IConfig; class HTTPHelperTest extends \Test\TestCase { @@ -22,7 +23,7 @@ class HTTPHelperTest extends \Test\TestCase { protected function setUp() { parent::setUp(); - $this->config = $this->getMockBuilder('\OCP\IConfig') + $this->config = $this->getMockBuilder(IConfig::class) ->disableOriginalConstructor()->getMock(); $this->clientService = $this->createMock(IClientService::class); $this->httpHelperMock = $this->getMockBuilder('\OC\HTTPHelper') |