Skip to content
Snippets Groups Projects
Commit 3e324f87 authored by Lukas Reschke's avatar Lukas Reschke Committed by Morris Jobke
Browse files

Use proper test name

parent 7b3f7363
Branches
No related tags found
No related merge requests found
......@@ -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();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment