summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoão Abecasis <joao.abecasis@nokia.com>2012-04-06 09:35:24 +0200
committerQt by Nokia <qt-info@nokia.com>2012-04-12 01:56:57 +0200
commita0a1595185a07fb2e5b9f95cd6075b65c2bd03a5 (patch)
tree30970cacdea180b52e922c59ebfa8ccff11bdb42 /tests
parentbb03f8e812ac7151ae98812fd899d0391326f21c (diff)
Prefer QCOMPARE to QVERIFY, as it gives better output
Done-by: Jędrzej Nowacki Change-Id: Ic1c8fd5b8acede52b45e5ea16b14fb5bae78f171 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/corelib/tools/qbytearray/tst_qbytearray.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/corelib/tools/qbytearray/tst_qbytearray.cpp b/tests/auto/corelib/tools/qbytearray/tst_qbytearray.cpp
index 037893a13e..267aa71085 100644
--- a/tests/auto/corelib/tools/qbytearray/tst_qbytearray.cpp
+++ b/tests/auto/corelib/tools/qbytearray/tst_qbytearray.cpp
@@ -1286,7 +1286,7 @@ void tst_QByteArray::appendAfterFromRawData()
arr += QByteArray::fromRawData(data, sizeof(data));
data[0] = 'Y';
}
- QVERIFY(arr.at(0) == 'X');
+ QCOMPARE(arr.at(0), 'X');
}
void tst_QByteArray::toFromHex_data()