aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-08-16 14:58:06 -0300
committerGitHub <noreply@github.com>2016-08-16 14:58:06 -0300
commite1aabeedd896fe381570f85c5b4116049c49f1b6 (patch)
tree308022df55a5f69591741e458ef3b0d4ccac0022
parent149c144409cc9cbc4e960dbd70c9c77d86b06d8d (diff)
parenteb8cd81859bd9f7df8cc08602200847e41e85f0d (diff)
downloadrails-e1aabeedd896fe381570f85c5b4116049c49f1b6.tar.gz
rails-e1aabeedd896fe381570f85c5b4116049c49f1b6.tar.bz2
rails-e1aabeedd896fe381570f85c5b4116049c49f1b6.zip
Merge pull request #25863 from mechanicles/remove-duplicate-test
Remove duplicate test.
-rw-r--r--activesupport/test/caching_test.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb
index 4e47465726..a669d666be 100644
--- a/activesupport/test/caching_test.rb
+++ b/activesupport/test/caching_test.rb
@@ -831,11 +831,6 @@ class FileStoreTest < ActiveSupport::TestCase
@cache.clear
end
- def test_long_keys
- @cache.write("a"*10000, 1)
- assert_equal 1, @cache.read("a"*10000)
- end
-
def test_long_uri_encoded_keys
@cache.write("%"*870, 1)
assert_equal 1, @cache.read("%"*870)