aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/preview.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/preview.php')
-rw-r--r--tests/lib/preview.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/lib/preview.php b/tests/lib/preview.php
index 70b7218474c..ca7fa6987d6 100644
--- a/tests/lib/preview.php
+++ b/tests/lib/preview.php
@@ -210,9 +210,9 @@ class Preview extends TestCase {
}
/**
- * Tests if the media type icon fits into the asked dimensions
+ * Tests if unsupported previews return an empty object
*/
- public function testIsMimePreviewTheRightSize() {
+ public function testUnsupportedPreviewsReturnEmptyObject() {
$width = 400;
$height = 200;
@@ -226,8 +226,7 @@ class Preview extends TestCase {
$preview->getPreview();
$image = $preview->getPreview();
- $this->assertSame($width, $image->width());
- $this->assertSame($height, $image->height());
+ $this->assertSame(false, $image->valid());
}
/**