summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools/qsize
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/tools/qsize')
-rw-r--r--tests/auto/corelib/tools/qsize/tst_qsize.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/corelib/tools/qsize/tst_qsize.cpp b/tests/auto/corelib/tools/qsize/tst_qsize.cpp
index 36654df618..ae9426c568 100644
--- a/tests/auto/corelib/tools/qsize/tst_qsize.cpp
+++ b/tests/auto/corelib/tools/qsize/tst_qsize.cpp
@@ -195,7 +195,7 @@ void tst_QSize::expandedTo_data()
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 result dont have to be equal to neither input1 nor input2.
+ // 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);
}
@@ -217,7 +217,7 @@ void tst_QSize::boundedTo_data()
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 result dont have to be equal to neither input1 nor input2.
+ // 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);
}