From 650c1a45d2ae6d6c9b27f3e55baa61205905aba4 Mon Sep 17 00:00:00 2001 From: Daniel Carabas Date: Tue, 7 Apr 2020 15:06:33 +0300 Subject: [PATCH] Fix docker-machine acceptance test --- spec/acceptance/machine_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/acceptance/machine_spec.rb b/spec/acceptance/machine_spec.rb index 638fb831..41ec4a4c 100644 --- a/spec/acceptance/machine_spec.rb +++ b/spec/acceptance/machine_spec.rb @@ -26,7 +26,7 @@ end it 'is installed and working' do - shell('docker-machine --help', acceptable_exit_codes: [0]) + run_shell('docker-machine --help', expect_failures: false) end end @@ -58,7 +58,7 @@ class { 'docker::machine': end it 'is installed and working' do - shell('docker-machine --help', acceptable_exit_codes: [0]) + run_shell('docker-machine --help', expect_failures: false) end end end