┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorFriedrich W. H. Kossebau <[email protected]>2026-01-09 16:16:48 +0100
committerMéven Car <[email protected]>2026-01-10 15:14:26 +0000
commit5fff1e414a060c0619a97ad8d3f5665e3f5a4878 (patch)
tree5ed5b7560ba22bf690f72c399d31490493b87ea3 /src/tests
parent3cea7599a110479071919e92d6c91959020c33df (diff)
Use Q_ASSERT instead of Q_CHECK_PTR for plain checks of pointer value
Q_CHECK_PTR (other than the name suggests) is intended only to check the success of memory allocations. Using it for any pointers instead can be misleading due to the "Out of memory" log printed in case of hits.
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/dolphinmainwindowtest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/dolphinmainwindowtest.cpp b/src/tests/dolphinmainwindowtest.cpp
index fb3c95383..f68f07cbc 100644
--- a/src/tests/dolphinmainwindowtest.cpp
+++ b/src/tests/dolphinmainwindowtest.cpp
@@ -863,7 +863,7 @@ void DolphinMainWindowTest::testAccessibilityTree()
QTRY_VERIFY_WITH_TIMEOUT(QApplication::activeWindow() != nullptr, 100);
QAccessibleInterface *accessibleInterfaceOfMainWindow = QAccessible::queryAccessibleInterface(m_mainWindow.get());
- Q_CHECK_PTR(accessibleInterfaceOfMainWindow);
+ Q_ASSERT(accessibleInterfaceOfMainWindow);
/// Test the accessibility of objects while traversing forwards (Tab key) and backwards (Shift+Tab).
int testedObjectsSizeAfterTraversingForwards = 0;