diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2018-12-13 19:56:09 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2018-12-13 19:56:09 +0000 |
commit | 2b5d0362bc3764926105fba42cf06776ca75c65f (patch) | |
tree | 072736a9da539b8a6f9becf9049ba20f6f820863 /test/unit | |
parent | 196540f7f61f6d1e7e5aae1f8ed1fe6b8ca38938 (diff) | |
download | redmine-2b5d0362bc3764926105fba42cf06776ca75c65f.tar.gz redmine-2b5d0362bc3764926105fba42cf06776ca75c65f.zip |
Removed instance variables that are no longer used after r17727 (#30163).
git-svn-id: http://svn.redmine.org/redmine/trunk@17733 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/initializers/patches_test.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/unit/initializers/patches_test.rb b/test/unit/initializers/patches_test.rb index 45e28e41e..c9a134fa4 100644 --- a/test/unit/initializers/patches_test.rb +++ b/test/unit/initializers/patches_test.rb @@ -22,16 +22,6 @@ class PatchesTest < ActiveSupport::TestCase def setup Setting.default_language = 'en' - @symbols = { :a => 1, :b => 2 } - @keys = %w( blue green red pink orange ) - @values = %w( 000099 009900 aa0000 cc0066 cc6633 ) - @hash = Hash.new - @ordered_hash = ActiveSupport::OrderedHash.new - - @keys.each_with_index do |key, index| - @hash[key] = @values[index] - @ordered_hash[key] = @values[index] - end end test "ActiveRecord::Base.human_attribute_name should transform name to field_name" do |