From c52e93e2960cab13fa6512b15f2158f160a793c7 Mon Sep 17 00:00:00 2001 From: Felix Van der Jeugt Date: Mon, 15 Feb 2016 22:52:28 +0100 Subject: [PATCH] no ellipsis is inserted in big windows --- tests/unit/mainwindow/statusbar/test_textbase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/mainwindow/statusbar/test_textbase.py b/tests/unit/mainwindow/statusbar/test_textbase.py index c33b11b0b..2b9bd4cc1 100644 --- a/tests/unit/mainwindow/statusbar/test_textbase.py +++ b/tests/unit/mainwindow/statusbar/test_textbase.py @@ -46,7 +46,7 @@ def test_elided_text(qtbot, elidemode, check): """ label = TextBase(elidemode=elidemode) qtbot.add_widget(label) - long_string = 'Hello world! ' * 20 + long_string = 'Hello world! ' * 100 label.setText(long_string) label.resize(100, 50) label.show()