From 4c426051ced7acdce7f577e76ac3f48f5e6b9b25 Mon Sep 17 00:00:00 2001 From: Lukas Ruzicka Date: Wed, 28 Jun 2023 13:44:31 +0200 Subject: [PATCH] Remove the Photos start-stop test. Based on the information that the application has been removed from the standard Workstation installation, see https://pagure.io/fedora-comps/c/462b65876fb4258fdb2ce19f4193900ef2bdc2d9?branch=main, we remove that application from this suite. --- tests/apps_startstop/gnome/photos.pm | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 tests/apps_startstop/gnome/photos.pm diff --git a/tests/apps_startstop/gnome/photos.pm b/tests/apps_startstop/gnome/photos.pm deleted file mode 100644 index 228a8461..00000000 --- a/tests/apps_startstop/gnome/photos.pm +++ /dev/null @@ -1,27 +0,0 @@ -use base "installedtest"; -use strict; -use testapi; -use utils; - -# This test checks that Photos starts. - -sub run { - my $self = shift; - - # Start the application - start_with_launcher('apps_menu_photos'); - # Check that is started - assert_screen 'apps_run_photos'; - # Register application - register_application("gnome-photos"); - # Close the application - quit_with_shortcut(); -} - -sub test_flags { - return {always_rollback => 1}; -} - -1; - -# vim: set sw=4 et: