Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-10-09 11:12:15 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-10-09 11:12:15 +0300
commit3f2cd13beb8b6f4fc39f1e7d87da4ae675f240b5 (patch)
tree4d936cc224ecaba3cb42b29ef8fb29a9c5feaa97
parent0beb42ebe8f9c16b0b66932103ecbef5b3ce83d1 (diff)
Remove HHVM check
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r--tests/lib/Files/Storage/Wrapper/QuotaTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Files/Storage/Wrapper/QuotaTest.php b/tests/lib/Files/Storage/Wrapper/QuotaTest.php
index 546ab69ef6b..adfd60d0532 100644
--- a/tests/lib/Files/Storage/Wrapper/QuotaTest.php
+++ b/tests/lib/Files/Storage/Wrapper/QuotaTest.php
@@ -179,7 +179,7 @@ class QuotaTest extends \Test\Files\Storage\Storage {
$instance = $this->getLimitedStorage(9);
$stream = $instance->fopen('files/foo', 'w+');
$meta = stream_get_meta_data($stream);
- $expected_type = defined('HHVM_VERSION') ? 'File' : 'user-space';
+ $expected_type = 'user-space';
$this->assertEquals($expected_type, $meta['wrapper_type']);
fclose($stream);
}