From d3193be3f7e4e678a605fe80e300ccb4fc2a2dde Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 27 Jan 2016 21:40:07 -0800 Subject: [PATCH] remember to shift when we use $self... --- tests/_boot_to_anaconda.pm | 1 + tests/upgrade_run.pm | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/_boot_to_anaconda.pm b/tests/_boot_to_anaconda.pm index 9651a8df..4690cc52 100644 --- a/tests/_boot_to_anaconda.pm +++ b/tests/_boot_to_anaconda.pm @@ -15,6 +15,7 @@ sub get_kernel_line { } sub run { + my $self = shift; # Wait for bootloader to appear if( get_var("UEFI")){ assert_screen "bootloader_uefi", 30; diff --git a/tests/upgrade_run.pm b/tests/upgrade_run.pm index e9738acf..c0658519 100644 --- a/tests/upgrade_run.pm +++ b/tests/upgrade_run.pm @@ -3,6 +3,7 @@ use strict; use testapi; sub run { + my $self = shift; my $release = $self->get_release; # NOTE: this doesn't actually work yet, it's a FIXME in fedorabase my $milestone = $self->get_milestone;