diff options
-rw-r--r-- | tests/lib/Files/Storage/Wrapper/QuotaTest.php | 2 |
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); } |