aboutsummaryrefslogtreecommitdiff
path: root/autotests
diff options
context:
space:
mode:
Diffstat (limited to 'autotests')
-rw-r--r--autotests/callcandidateseventtest.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/autotests/callcandidateseventtest.cpp b/autotests/callcandidateseventtest.cpp
index 39e6a116..1a69cb66 100644
--- a/autotests/callcandidateseventtest.cpp
+++ b/autotests/callcandidateseventtest.cpp
@@ -43,13 +43,14 @@ void TestCallCandidatesEvent::fromJson()
Quotient::CallCandidatesEvent callCandidatesEvent(object);
QCOMPARE(callCandidatesEvent.version(), 0);
- QCOMPARE(callCandidatesEvent.callId(), "12345");
+ QCOMPARE(callCandidatesEvent.callId(), QStringLiteral("12345"));
QCOMPARE(callCandidatesEvent.candidates().count(), 1);
const QJsonObject &candidate = callCandidatesEvent.candidates().at(0).toObject();
- QCOMPARE(candidate.value("sdpMid").toString(), "audio");
+ QCOMPARE(candidate.value("sdpMid").toString(), QStringLiteral("audio"));
QCOMPARE(candidate.value("sdpMLineIndex").toInt(), 0);
- QCOMPARE(candidate.value("candidate").toString(), "candidate:863018703 1 udp 2122260223 10.9.64.156 43670 typ host generation 0");
+ QCOMPARE(candidate.value("candidate").toString(),
+ QStringLiteral("candidate:863018703 1 udp 2122260223 10.9.64.156 43670 typ host generation 0"));
}
QTEST_MAIN(TestCallCandidatesEvent)