diff --git a/neon/tests/plasma/plasma_wayland.pm b/neon/tests/plasma/plasma_wayland.pm index da52d88..6457f15 100644 --- a/neon/tests/plasma/plasma_wayland.pm +++ b/neon/tests/plasma/plasma_wayland.pm @@ -1,45 +1,45 @@ # Copyright (C) 2018 Bhavisha Dhruve # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License or (at your option) version 3 or any later version # accepted by the membership of KDE e.V. (or its successor approved # by the membership of KDE e.V.), which shall act as a proxy # defined in Section 14 of version 3 of the license. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . use base "basetest_neon"; use strict; use testapi; sub run { my ($self) = @_; $self->boot_to_dm; # don't need the x11 session, we'll switch to wayland. assert_and_click 'sddm-choose-session'; assert_and_click 'sddm-plasma-wayland'; $self->login; - assert_screen 'folder-desktop', 60; + assert_screen 'folder-desktop', 60; } sub test_flags { # without anything - rollback to 'lastgood' snapshot if failed # 'fatal' - whole test suite is in danger if this fails # 'milestone' - after this test succeeds, update 'lastgood' # 'important' - if this fails, set the overall state to 'fail' return { important => 1 }; } 1;