diff options
author | Vipul A M <vipulnsward@gmail.com> | 2013-05-09 18:23:27 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2013-05-09 18:23:27 +0530 |
commit | 6944dfb5d0a292b1187704b88d78d2e07a31324e (patch) | |
tree | 959fd3f1409befc0514082e4ad59e0c9eefd6127 /activesupport/test | |
parent | cd3177d315cd537a2810a27e0aff7e3a7af111f2 (diff) | |
download | rails-6944dfb5d0a292b1187704b88d78d2e07a31324e.tar.gz rails-6944dfb5d0a292b1187704b88d78d2e07a31324e.tar.bz2 rails-6944dfb5d0a292b1187704b88d78d2e07a31324e.zip |
remove redundant var
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/dependencies_test.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activesupport/test/dependencies_test.rb b/activesupport/test/dependencies_test.rb index 115a4e894d..4b1426bb2e 100644 --- a/activesupport/test/dependencies_test.rb +++ b/activesupport/test/dependencies_test.rb @@ -526,7 +526,6 @@ class DependenciesTest < ActiveSupport::TestCase m = Module.new m.module_eval "def a() CountingLoader; end" extend m - kls = nil with_autoloading_fixtures do kls = nil assert_nothing_raised { kls = a } |