aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2022-11-11 15:25:39 +0100
committerChristian Stenger <christian.stenger@qt.io>2022-11-11 14:28:00 +0000
commita6774dbad58bc50a5f69c2741ed2c6464fa2894a (patch)
tree4a782963ea48adda8236b9735c86925cc26c2477 /tests
parenta44bd1643b0d67254b6f2ffb2d25743fbf815cb8 (diff)
Tests: Fix dumper tests on macOS
Change-Id: I7827245017c285ff7c9eb4799a7b340061f3c4af Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index a65f2158ea7..39ec743104c 100644
--- a/tests/auto/debugger/tst_dumpers.cpp
+++ b/tests/auto/debugger/tst_dumpers.cpp
@@ -1849,7 +1849,7 @@ void tst_Dumpers::dumper()
} else if (m_debuggerEngine == LldbEngine) {
//qCDebug(lcDumpers).noquote() << "GOT OUTPUT: " << output;
- int pos = output.indexOf("data=[{");
+ int pos = output.indexOf("data=[");
QVERIFY(pos != -1);
output = output.mid(pos);
contents = output;