aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-01-31 18:28:05 -0500
committerGitHub <noreply@github.com>2017-01-31 18:28:05 -0500
commitd51513590c607422fa70fb8879e43df290f0c777 (patch)
tree5e3003aaa42f9969e29d0db49d8a687cd97e97f9 /activesupport
parent087385a0946645744b7702b3e5af71a04c84e086 (diff)
parent11d994724e2aff330603082739403da76c5d28b0 (diff)
downloadrails-d51513590c607422fa70fb8879e43df290f0c777.tar.gz
rails-d51513590c607422fa70fb8879e43df290f0c777.tar.bz2
rails-d51513590c607422fa70fb8879e43df290f0c777.zip
Merge pull request #27866 from y-yagi/remove_unused_variable
remove unused variable
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/test/file_update_checker_shared_tests.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/file_update_checker_shared_tests.rb b/activesupport/test/file_update_checker_shared_tests.rb
index d038b4debd..361e7e2349 100644
--- a/activesupport/test/file_update_checker_shared_tests.rb
+++ b/activesupport/test/file_update_checker_shared_tests.rb
@@ -276,7 +276,7 @@ module FileUpdateCheckerSharedTests
test "initialize raises an ArgumentError if no block given" do
assert_raise ArgumentError do
- checker = new_checker([])
+ new_checker([])
end
end
end