summaryrefslogtreecommitdiffstats
path: root/tests/testhelper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testhelper.cpp')
-rw-r--r--tests/testhelper.cpp6
1 files 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"));
}