summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorIvan Komissarov <ABBAPOH@gmail.com>2014-08-05 13:05:09 +0400
committerIvan Komissarov <ABBAPOH@gmail.com>2014-08-05 13:30:15 +0200
commit3e7caa97e4e16fbc8f15a17ddb4d44a915f81dba (patch)
tree2e8c9880b0d4193799a7ddd6db6cd42d42579c9d /tests/auto
parentedc78eca750953ad08ad67cddde92d2f977de2a8 (diff)
Renamed A8R8G8B8_2.dds to A8R8G8B8.2.dds.
This fix is needed for further patch to be able to get image format (subtype) from filename. Change-Id: I0de72be6c8d1942e6ad63c4d131bd380379a5417 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/dds/tst_qdds.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/dds/tst_qdds.cpp b/tests/auto/dds/tst_qdds.cpp
index d41ea25..2474664 100644
--- a/tests/auto/dds/tst_qdds.cpp
+++ b/tests/auto/dds/tst_qdds.cpp
@@ -109,7 +109,7 @@ void tst_qdds::readImage_data()
QTest::newRow("46") << QString("RXGB") << QSize(64, 64);
QTest::newRow("47") << QString("ATI2") << QSize(64, 64);
QTest::newRow("48") << QString("P4") << QSize(64, 64);
- QTest::newRow("49") << QString("A8R8G8B8_2") << QSize(64, 32);
+ QTest::newRow("49") << QString("A8R8G8B8.2") << QSize(64, 32);
}
void tst_qdds::readImage()
@@ -159,7 +159,7 @@ void tst_qdds::testWriteImage_data()
QTest::addColumn<QSize>("size");
QTest::newRow("1") << QString("A8R8G8B8") << QSize(64, 64);
- QTest::newRow("2") << QString("A8R8G8B8_2") << QSize(64, 32);
+ QTest::newRow("2") << QString("A8R8G8B8.2") << QSize(64, 32);
}
void tst_qdds::testWriteImage()