aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/utilcheckserver.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/utilcheckserver.php')
-rw-r--r--tests/lib/utilcheckserver.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/utilcheckserver.php b/tests/lib/utilcheckserver.php
index 64757d0acd9..94e7fd2f779 100644
--- a/tests/lib/utilcheckserver.php
+++ b/tests/lib/utilcheckserver.php
@@ -123,7 +123,7 @@ class Test_Util_CheckServer extends \Test\TestCase {
$result = \OC_Util::checkServer($this->getConfig(array(
'installed' => true,
- 'version' => implode('.', OC_Util::getVersion())
+ 'version' => implode('.', \OCP\Util::getVersion())
)));
$this->assertCount(1, $result);
}
@@ -134,7 +134,7 @@ class Test_Util_CheckServer extends \Test\TestCase {
public function testDataDirWritable() {
$result = \OC_Util::checkServer($this->getConfig(array(
'installed' => true,
- 'version' => implode('.', OC_Util::getVersion())
+ 'version' => implode('.', \OCP\Util::getVersion())
)));
$this->assertEmpty($result);
}
@@ -150,7 +150,7 @@ class Test_Util_CheckServer extends \Test\TestCase {
chmod($this->datadir, 0300);
$result = \OC_Util::checkServer($this->getConfig(array(
'installed' => true,
- 'version' => implode('.', OC_Util::getVersion())
+ 'version' => implode('.', \OCP\Util::getVersion())
)));
$this->assertCount(1, $result);
}
@@ -162,7 +162,7 @@ class Test_Util_CheckServer extends \Test\TestCase {
chmod($this->datadir, 0300);
$result = \OC_Util::checkServer($this->getConfig(array(
'installed' => false,
- 'version' => implode('.', OC_Util::getVersion())
+ 'version' => implode('.', \OCP\Util::getVersion())
)));
chmod($this->datadir, 0700); //needed for cleanup
$this->assertEmpty($result);