From 5d151de379de34bb66ba78e34e51605a860d23c9 Mon Sep 17 00:00:00 2001 From: Josh Holtz Date: Mon, 31 Jul 2017 10:36:03 -0500 Subject: [PATCH] Fixed tests --- spec/s3_action_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/s3_action_spec.rb b/spec/s3_action_spec.rb index 323efdb..20d929d 100644 --- a/spec/s3_action_spec.rb +++ b/spec/s3_action_spec.rb @@ -14,7 +14,7 @@ Fastlane::FastFile.new.parse("lane :test do aws_s3({}) end").runner.execute(:test) - end.to raise_error("No S3 access key given, pass using `access_key: 'key'`") + end.to raise_error("No S3 access key given, pass using `access_key: 'key'` (or use `aws_profile: 'profile'`)") end it "raise an error if no S3 secret access key was given" do @@ -24,7 +24,7 @@ access_key: 'access_key' }) end").runner.execute(:test) - end.to raise_error("No S3 secret access key given, pass using `secret_access_key: 'secret key'`") + end.to raise_error("No S3 secret access key given, pass using `secret_access_key: 'secret key'` (or use `aws_profile: 'profile'`)") end it "raise an error if no S3 bucket was given" do