aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/quickcontrols2/controls/data/tst_tooltip.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/auto/quickcontrols2/controls/data/tst_tooltip.qml b/tests/auto/quickcontrols2/controls/data/tst_tooltip.qml
index 2f98a5f3d2..b4e992a46a 100644
--- a/tests/auto/quickcontrols2/controls/data/tst_tooltip.qml
+++ b/tests/auto/quickcontrols2/controls/data/tst_tooltip.qml
@@ -75,11 +75,6 @@ TestCase {
SignalSpy { }
}
- Component {
- id: itemComponent
- Item {}
- }
-
QtObject {
id: object
}
@@ -451,19 +446,6 @@ TestCase {
verify(item.ToolTip.toolTip.contentItem.width < item.ToolTip.toolTip.contentItem.implicitWidth)
}
- // QTBUG-83630: Test that newlines are accounted for in the implicit contentWidth.
- function test_newLines() {
- var item = createTemporaryObject(itemComponent, testCase)
- verify(item)
-
- item.ToolTip.show("This is one line of text\nThis is another line of text")
-
- // The implicitWidth of the Text item for the text above will be larger than
- // its contentWidth. ToolTip's implicitWidth uses contentWidth in its calculation,
- // so we check that it's less than the Text's implicitWidth.
- verify(item.ToolTip.toolTip.implicitWidth < item.ToolTip.toolTip.contentItem.implicitWidth)
- }
-
function test_timeoutAfterOpened() {
let control = createTemporaryObject(toolTipWithExitTransition, testCase, { timeout: 1, exit: null })
verify(control)