Commit 5ec268b6 authored by Viktor Engelmann's avatar Viktor Engelmann
Browse files

Make error message more verbose in QML test test_loadProgress


If the verify(loadProgressMin <= loadProgress) fails, the output was
not verbose enough. The additional outputs will tell us more about
what caused the test to fail.

Task-number: QTBUG-61815
Change-Id: Ia9b45ef4f09a5b25a344e423a7b0c61d5d430542
Reviewed-by: default avatarKai Koehne <kai.koehne@qt.io>
Showing with 2 additions and 1 deletion
...@@ -71,7 +71,8 @@ TestWebEngineView { ...@@ -71,7 +71,8 @@ TestWebEngineView {
var loadProgressMin = 0 var loadProgressMin = 0
for (var i in loadProgressArray) { for (var i in loadProgressArray) {
var loadProgress = loadProgressArray[i] var loadProgress = loadProgressArray[i]
verify(loadProgressMin <= loadProgress) if (loadProgressMin > loadProgress)
fail("Invalid sequence of progress-values: " + loadProgressArray)
loadProgressMin = loadProgress loadProgressMin = loadProgress
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment