From 34e68d34dd59ff3ebde8312b5645091ab1881216 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Fri, 28 Sep 2018 06:17:43 -0700 Subject: [PATCH] Tests: allow compilation with older Qt versions Comparisons of QString results with C strings didn't always exist. Signed-off-by: Dirk Hohndel --- tests/testhelper.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testhelper.cpp b/tests/testhelper.cpp index 83cd3176d..dc4e4d1bb 100644 --- a/tests/testhelper.cpp +++ b/tests/testhelper.cpp @@ -27,16 +27,16 @@ void TestHelper::parseNameAddress() { QString name, address; address = extractBluetoothNameAddress("01:a2:b3:c4:d5:06", name); - QCOMPARE(address, "01:a2:b3:c4:d5:06"); + QCOMPARE(address, QString("01:a2:b3:c4:d5:06")); QCOMPARE(name, QString()); address = extractBluetoothNameAddress("somename (01:a2:b3:c4:d5:06)", name); - QCOMPARE(address, "01:a2:b3:c4:d5:06"); + QCOMPARE(address, QString("01:a2:b3:c4:d5:06")); QCOMPARE(name, QString("somename")); address = extractBluetoothNameAddress("garbage", name); QCOMPARE(address, QString()); QCOMPARE(name, QString()); address = extractBluetoothNameAddress("somename (LE:{6e50ff5d-cdd3-4c43-a80a-1ed4c7d2d2a5})", name); - QCOMPARE(address, "LE:{6e50ff5d-cdd3-4c43-a80a-1ed4c7d2d2a5}"); + QCOMPARE(address, QString("LE:{6e50ff5d-cdd3-4c43-a80a-1ed4c7d2d2a5}")); QCOMPARE(name, QString("somename")); }