summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChristian Strømme <christian.stromme@digia.com>2014-01-03 16:43:55 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-07 12:38:45 +0100
commit4050cdf66d06c5492f3459f8cd4defa1bf434f7e (patch)
tree5931c8161f7e50dc3ea7655dfe1bdf1e8ae5604c /tests
parent8827ca857101c64bd797197876746edd76cb20c8 (diff)
Fix whitespace issue in the QVideoFrame auto test.
The test was failing because it was expecting a trailing whitespace directly after the serialization of the meta-data map. Change-Id: I62aa022492c721d408d23a98e8a3cfa173f45e68 Reviewed-by: Yoann Lopes <yoann.lopes@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/unit/qvideoframe/tst_qvideoframe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp b/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp
index 5523f297d..c7dbfbe55 100644
--- a/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp
+++ b/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp
@@ -1108,7 +1108,7 @@ void tst_QVideoFrame::debug_data()
QVideoFrame g7(0, QSize(320,240), 640, QVideoFrame::Format_ARGB32);
g7.setStartTime(9000000000LL);
g7.setMetaData("bar", 42);
- QTest::newRow("more valid for long forever + metadata") << g7 << QString::fromLatin1("QVideoFrame(QSize(320, 240) , Format_ARGB32, NoHandle, NotMapped, 2:30:00.00 - forever, metaData: QMap((\"bar\", QVariant(int, 42) ) ) )");
+ QTest::newRow("more valid for long forever + metadata") << g7 << QString::fromLatin1("QVideoFrame(QSize(320, 240) , Format_ARGB32, NoHandle, NotMapped, 2:30:00.00 - forever, metaData: QMap((\"bar\", QVariant(int, 42) ) ) )");
}
void tst_QVideoFrame::debug()