aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/test/controllers/direct_uploads_controller_test.rb
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-08-05 12:21:21 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-08-05 12:22:39 +0900
commit46db463d068d9b24c99f11a1c78dac1c1bfb45c2 (patch)
treea85164df8a161609d2b00ee5268888ffdfaab05b /activestorage/test/controllers/direct_uploads_controller_test.rb
parent95ad242c8066e71c403d53ea634f347e357473b1 (diff)
downloadrails-46db463d068d9b24c99f11a1c78dac1c1bfb45c2.tar.gz
rails-46db463d068d9b24c99f11a1c78dac1c1bfb45c2.tar.bz2
rails-46db463d068d9b24c99f11a1c78dac1c1bfb45c2.zip
Fix ruby warnings
This fixes following warnings: ``` test/models/variant_test.rb:11: warning: ambiguous first argument; put parentheses or a space even after `/' operator lib/active_storage/attached/macros.rb:63: warning: instance variable @active_storage_attached_highlights not initialized lib/active_storage/attached/macros.rb:25: warning: instance variable @active_storage_attached_avatar not initialized ```
Diffstat (limited to 'activestorage/test/controllers/direct_uploads_controller_test.rb')
-rw-r--r--activestorage/test/controllers/direct_uploads_controller_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activestorage/test/controllers/direct_uploads_controller_test.rb b/activestorage/test/controllers/direct_uploads_controller_test.rb
index e056b629bb..4f335c7759 100644
--- a/activestorage/test/controllers/direct_uploads_controller_test.rb
+++ b/activestorage/test/controllers/direct_uploads_controller_test.rb
@@ -25,7 +25,7 @@ if SERVICE_CONFIGURATIONS[:s3] && SERVICE_CONFIGURATIONS[:s3][:access_key_id].pr
assert_equal checksum, details["checksum"]
assert_equal "text/plain", details["content_type"]
assert_match SERVICE_CONFIGURATIONS[:s3][:bucket], details["direct_upload"]["url"]
- assert_match /s3\.(\S+)?amazonaws\.com/, details["direct_upload"]["url"]
+ assert_match(/s3\.(\S+)?amazonaws\.com/, details["direct_upload"]["url"])
assert_equal({ "Content-Type" => "text/plain", "Content-MD5" => checksum }, details["direct_upload"]["headers"])
end
end
@@ -115,7 +115,7 @@ class ActiveStorage::DiskDirectUploadsControllerTest < ActionDispatch::Integrati
assert_equal 6, details["byte_size"]
assert_equal checksum, details["checksum"]
assert_equal "text/plain", details["content_type"]
- assert_match /rails\/active_storage\/disk/, details["direct_upload"]["url"]
+ assert_match(/rails\/active_storage\/disk/, details["direct_upload"]["url"])
assert_equal({ "Content-Type" => "text/plain" }, details["direct_upload"]["headers"])
end
end