diff options
Diffstat (limited to 'cucumber/features')
-rw-r--r-- | cucumber/features/images/d-i_boot_graphical-default_9alpha.png | bin | 0 -> 15478 bytes | |||
-rw-r--r-- | cucumber/features/step_definitions/common_steps.rb | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cucumber/features/images/d-i_boot_graphical-default_9alpha.png b/cucumber/features/images/d-i_boot_graphical-default_9alpha.png Binary files differnew file mode 100644 index 00000000..ac3063c3 --- /dev/null +++ b/cucumber/features/images/d-i_boot_graphical-default_9alpha.png diff --git a/cucumber/features/step_definitions/common_steps.rb b/cucumber/features/step_definitions/common_steps.rb index a7b08701..150c21f1 100644 --- a/cucumber/features/step_definitions/common_steps.rb +++ b/cucumber/features/step_definitions/common_steps.rb @@ -277,7 +277,7 @@ end Given /^I select the install mode$/ do boot_timeout = 60 - on_screen, _ = @screen.waitAny(["d-i_boot_graphical-default.png","d-i_boot_text-default.png","d-i_boot_miniiso.png"], boot_timeout * PATIENCE) + on_screen, _ = @screen.waitAny(["d-i_boot_graphical-default.png","d-i_boot_graphical-default_9alpha.png","d-i_boot_text-default.png","d-i_boot_miniiso.png"], boot_timeout * PATIENCE) debug_log("debug: found '#{on_screen}' in the bootspash", :color => :blue) if "d-i_boot_miniiso.png" != on_screen if ("d-i_boot_text-default.png" == on_screen) == ("gui" == @ui_mode) @@ -567,7 +567,7 @@ Given /^I allow reboot after the install is complete$/ do end Given /^I wait for the reboot$/ do - @screen.waitAny(["d-i_boot_graphical-default.png","d-i_boot_text-default.png","d-i_boot_miniiso.png"], 10 * 60 * PATIENCE) + @screen.waitAny(["d-i_boot_graphical-default.png","d-i_boot_graphical-default_9alpha.png","d-i_boot_text-default.png","d-i_boot_miniiso.png"], 10 * 60 * PATIENCE) end Given /^I should see a ([a-zA-Z]*) Login prompt$/ do |style| |