summaryrefslogtreecommitdiff
path: root/tests/auto/client/client/tst_client.cpp
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@qt.io>2022-11-11 15:53:00 +0100
committerMarc Mutz <marc.mutz@qt.io>2022-11-14 07:24:36 +0100
commit12062bd6783e344f6511287e369954d22cb54dee (patch)
treebec2a5a447f66447d02a680a6a725483392456ef /tests/auto/client/client/tst_client.cpp
parent7f953786f895ebbef9e135e8bf098075986a3ba5 (diff)
downloadqtwayland-12062bd6783e344f6511287e369954d22cb54dee.tar.gz
Port from container::count() and length() to size() - V5
This is a the same semantic patch (qt-port-to-std-compatible-api V5 with config Scope: 'Container') as in dev. I've re-ran it in 6.4 to avoid cherry-pick conflicts. Change-Id: I9621dee5ed328b47e78919a34c307105e4311903 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'tests/auto/client/client/tst_client.cpp')
-rw-r--r--tests/auto/client/client/tst_client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/client/client/tst_client.cpp b/tests/auto/client/client/tst_client.cpp
index 1c288324..db4eb77e 100644
--- a/tests/auto/client/client/tst_client.cpp
+++ b/tests/auto/client/client/tst_client.cpp
@@ -590,7 +590,7 @@ void tst_WaylandClient::longWindowTitleWithUtf16Characters()
{
QWindow window;
QString absurdlyLongTitle = QString("δΈ‰").repeated(10000);
- Q_ASSERT(absurdlyLongTitle.length() == 10000); // just making sure the test isn't broken
+ Q_ASSERT(absurdlyLongTitle.size() == 10000); // just making sure the test isn't broken
window.setTitle(absurdlyLongTitle);
window.show();
QCOMPOSITOR_TRY_VERIFY(surface());