From 2f34414bf809c69517f2af43f36f38129c422026 Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Tue, 3 Feb 2015 04:02:10 +0000 Subject: [PATCH] Fix aruba 0.6.2 API usage Use `check_file_content` instead of `check_exact_file_content` which has been deprecated. --- features/steps/remote_steps.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/steps/remote_steps.rb b/features/steps/remote_steps.rb index 0db6927..b260312 100644 --- a/features/steps/remote_steps.rb +++ b/features/steps/remote_steps.rb @@ -19,7 +19,7 @@ Then /^the remote file "([^"]+)" must contain "([^"]+)"$/ do |path, content| end Then /^the remote file "([^"]+)" must contain exactly "([^"]+)"$/ do |path, content| - check_exact_file_content path, content + check_file_content path, content end Then /^the remote file "([^"]+)" must match \/([^\/]+)\/$/ do |path, pattern|