From e7592dbf9dc61702d48913981e1c6dc27019905c Mon Sep 17 00:00:00 2001 From: William Johnston Date: Tue, 1 Mar 2016 09:55:23 -0600 Subject: [PATCH] Fix glitch in autocorrect --- features/support/remote_command_helpers.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/support/remote_command_helpers.rb b/features/support/remote_command_helpers.rb index 91420c1f..bafdf560 100644 --- a/features/support/remote_command_helpers.rb +++ b/features/support/remote_command_helpers.rb @@ -17,8 +17,8 @@ module RemoteCommandHelpers def safely_remove_file(_path) run_vagrant_command("rm #{test_file}") - rescue - VagrantHelpers::VagrantSSHCommandError + rescue VagrantHelpers::VagrantSSHCommandError + nil end end