summaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/unit/ServerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dav/tests/unit/ServerTest.php')
-rw-r--r--apps/dav/tests/unit/ServerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/ServerTest.php b/apps/dav/tests/unit/ServerTest.php
index 83f14db88f1..97c165683bd 100644
--- a/apps/dav/tests/unit/ServerTest.php
+++ b/apps/dav/tests/unit/ServerTest.php
@@ -39,6 +39,6 @@ class ServerTest extends \Test\TestCase {
$r = $this->getMockBuilder('\OCP\IRequest')
->disableOriginalConstructor()->getMock();
$s = new Server($r, '/');
- $this->assertNotNull($s->server);
+ $this->assertInstanceOf('OCA\DAV\Server', $s);
}
}