summaryrefslogtreecommitdiff
path: root/tests/auto/websocketcorsauthenticator/tst_websocketcorsauthenticator.cpp
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@digia.com>2014-01-18 01:32:30 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-18 14:45:46 +0100
commit3359932202f79b0fa80ae8d3a6ec73f35b34c738 (patch)
treeb452b15c63e073db4b3e19b6ee19db159af89d6d /tests/auto/websocketcorsauthenticator/tst_websocketcorsauthenticator.cpp
parentabf5f99d1808bbf18b8ebbe2b9468d409fe77158 (diff)
downloadqtwebsockets-3359932202f79b0fa80ae8d3a6ec73f35b34c738.tar.gz
Use QString() instead of QStringLiteral("")
And do the same for QByteArray. Instantiating the default constructor uses QArrayData::sharedNull() for the d-pointer which is the cheapest constructor in memory and instructions. Change-Id: I1ceaafbc0c0cb1ccc5690edba89ea1100f30b3cd Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'tests/auto/websocketcorsauthenticator/tst_websocketcorsauthenticator.cpp')
-rw-r--r--tests/auto/websocketcorsauthenticator/tst_websocketcorsauthenticator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/websocketcorsauthenticator/tst_websocketcorsauthenticator.cpp b/tests/auto/websocketcorsauthenticator/tst_websocketcorsauthenticator.cpp
index 6d44241..7bb44b1 100644
--- a/tests/auto/websocketcorsauthenticator/tst_websocketcorsauthenticator.cpp
+++ b/tests/auto/websocketcorsauthenticator/tst_websocketcorsauthenticator.cpp
@@ -92,7 +92,7 @@ void tst_WebSocketCorsAuthenticator::cleanup()
void tst_WebSocketCorsAuthenticator::tst_initialization()
{
{
- QWebSocketCorsAuthenticator authenticator(QStringLiteral(""));
+ QWebSocketCorsAuthenticator authenticator((QString()));
QCOMPARE(authenticator.allowed(), true);
QCOMPARE(authenticator.origin(), QString());