summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools/qsize
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-11-07 19:19:27 +1000
committerQt by Nokia <qt-info@nokia.com>2011-11-10 04:42:45 +0100
commit8e11f7c93a1f7df0d10e2f851283c825ca39b75b (patch)
tree6f02b39217acd9fb9c033fbe908b8ebb1859896a /tests/auto/corelib/tools/qsize
parent2cd47107155fc251747028b9b0ae6d2c9e69e06c (diff)
Cleanup corelib autotests
Remove literal tabs. Change-Id: I210a0259773cceb20d35ebc80b889e3ebb88b540 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/corelib/tools/qsize')
-rw-r--r--tests/auto/corelib/tools/qsize/tst_qsize.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/auto/corelib/tools/qsize/tst_qsize.cpp b/tests/auto/corelib/tools/qsize/tst_qsize.cpp
index da636a3747..03a6f1d62d 100644
--- a/tests/auto/corelib/tools/qsize/tst_qsize.cpp
+++ b/tests/auto/corelib/tools/qsize/tst_qsize.cpp
@@ -165,11 +165,11 @@ void tst_QSize::expandedTo_data()
QTest::addColumn<QSize>("input2");
QTest::addColumn<QSize>("expected");
- QTest::newRow("data0") << QSize(10,12) << QSize(6,4) << QSize(10,12);
- QTest::newRow("data1") << QSize(0,0) << QSize(6,4) << QSize(6,4);
+ QTest::newRow("data0") << QSize(10,12) << QSize(6,4) << QSize(10,12);
+ QTest::newRow("data1") << QSize(0,0) << QSize(6,4) << QSize(6,4);
// This should pick the highest of w,h components independently of each other,
// thus the results don't have to be equal to neither input1 nor input2.
- QTest::newRow("data3") << QSize(6,4) << QSize(4,6) << QSize(6,6);
+ QTest::newRow("data3") << QSize(6,4) << QSize(4,6) << QSize(6,6);
}
void tst_QSize::expandedTo()
@@ -187,11 +187,11 @@ void tst_QSize::boundedTo_data()
QTest::addColumn<QSize>("input2");
QTest::addColumn<QSize>("expected");
- QTest::newRow("data0") << QSize(10,12) << QSize(6,4) << QSize(6,4);
- QTest::newRow("data1") << QSize(0,0) << QSize(6,4) << QSize(0,0);
+ QTest::newRow("data0") << QSize(10,12) << QSize(6,4) << QSize(6,4);
+ QTest::newRow("data1") << QSize(0,0) << QSize(6,4) << QSize(0,0);
// This should pick the lowest of w,h components independently of each other,
// thus the results don't have to be equal to neither input1 nor input2.
- QTest::newRow("data3") << QSize(6,4) << QSize(4,6) << QSize(4,4);
+ QTest::newRow("data3") << QSize(6,4) << QSize(4,6) << QSize(4,4);
}
void tst_QSize::boundedTo()
@@ -209,8 +209,8 @@ void tst_QSize::transpose_data()
QTest::addColumn<QSize>("expected");
QTest::newRow("data0") << QSize(10,12) << QSize(12,10);
- QTest::newRow("data1") << QSize(0,0) << QSize(0,0);
- QTest::newRow("data3") << QSize(6,4) << QSize(4,6);
+ QTest::newRow("data1") << QSize(0,0) << QSize(0,0);
+ QTest::newRow("data3") << QSize(6,4) << QSize(4,6);
}
void tst_QSize::transpose()