diff --git a/tests/components/button.qml b/tests/components/button.qml index a645537ab..3382f099c 100644 --- a/tests/components/button.qml +++ b/tests/components/button.qml @@ -96,13 +96,17 @@ Rectangle } Label { - text: "button and textfield should have the same height" + text: "button (with or without icon) and textfield should have the same height" } RowLayout { PlasmaComponents.Button { text: "test" } + PlasmaComponents.Button { + iconSource: "application-menu" + text: "test" + } PlasmaComponents.TextField { } }