Skip to content

Commit a1dc424

Browse files
authored
Merge pull request #611 from mishina2228/patch-1
Remove warning: assigned but unused variable
2 parents f33af4f + cf52520 commit a1dc424

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/backend/cache_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def teardown
6262
I18n.t(:missing, :scope => :foo, :extra => true)
6363
assert_equal 1, I18n.cache_store.instance_variable_get(:@data).size
6464

65-
cache_key, entry = I18n.cache_store.instance_variable_get(:@data).first
65+
_, entry = I18n.cache_store.instance_variable_get(:@data).first
6666
assert_equal({ scope: :foo }, entry.value.options)
6767
end
6868

0 commit comments

Comments
 (0)