Remove duplicate test.

We already test similar stuff in `test_really_long_keys` so removing
this extra and duplicated test.
This commit is contained in:
Santosh Wadghule 2016-07-17 12:04:20 +05:30
parent 5494af0c0f
commit eb8cd81859

@ -809,11 +809,6 @@ def test_clear_without_cache_dir
@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)