aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/image/tst_image.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmltest/image/tst_image.qml')
-rw-r--r--tests/auto/qmltest/image/tst_image.qml20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/auto/qmltest/image/tst_image.qml b/tests/auto/qmltest/image/tst_image.qml
index 346bee6969..f8f0e7b53c 100644
--- a/tests/auto/qmltest/image/tst_image.qml
+++ b/tests/auto/qmltest/image/tst_image.qml
@@ -122,16 +122,6 @@ Item {
fillMode: Image.TileHorizontally
}
- Image {
- id: pkmImage
- source: "logo.pkm"
- }
-
- Image {
- id: ktxImage
- source: "car.ktx"
- }
-
TestCase {
name: "Image"
@@ -231,15 +221,5 @@ Item {
compare(tileModes3.height, 150)
compare(tileModes3.fillMode, Image.TileHorizontally)
}
-
- function test_pkmImage() {
- compare(pkmImage.width, 256)
- compare(pkmImage.height, 256)
- }
-
- function test_ktxImage() {
- compare(ktxImage.width, 146)
- compare(ktxImage.height, 80)
- }
}
}