diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-12-19 19:42:39 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-01-05 09:54:14 +0100 |
commit | 3e324f87d0174efe28c6d21e4a326978867bada3 (patch) | |
tree | 27a14154549822e7166234ac32fc74ad54391e7e | |
parent | 7b3f7363002087c146803c6d7852407ad7aa39cc (diff) | |
download | nextcloud-server-3e324f87d0174efe28c6d21e4a326978867bada3.tar.gz nextcloud-server-3e324f87d0174efe28c6d21e4a326978867bada3.zip |
Use proper test name
-rw-r--r-- | tests/lib/connector/sabre/principal.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/lib/connector/sabre/principal.php b/tests/lib/connector/sabre/principal.php index 74217cce7b7..5d13aa4421e 100644 --- a/tests/lib/connector/sabre/principal.php +++ b/tests/lib/connector/sabre/principal.php @@ -12,14 +12,13 @@ namespace Test\Connector\Sabre; use OCP\IUserManager; use OCP\IConfig; -use OC\Connector\Sabre\Principal; -class Test_Principal extends \Test\TestCase { +class Principal extends \Test\TestCase { /** @var IUserManager */ private $userManager; /** @var IConfig */ private $config; - /** @var Principal */ + /** @var \OC\Connector\Sabre\Principal */ private $connector; public function setUp() { @@ -28,7 +27,7 @@ class Test_Principal extends \Test\TestCase { $this->config = $this->getMockBuilder('\OCP\IConfig') ->disableOriginalConstructor()->getMock(); - $this->connector = new Principal($this->config, $this->userManager); + $this->connector = new \OC\Connector\Sabre\Principal($this->config, $this->userManager); parent::setUp(); } |