We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de61931 commit 01e3a9fCopy full SHA for 01e3a9f
lib/optimizely/odp/lru_cache.rb
@@ -91,7 +91,7 @@ def peek(key)
91
92
@cache_mutex.synchronize { @map[key]&.value }
93
end
94
-
+
95
# Remove the element associated with the provided key from the cache
96
#
97
# @param key - The key to remove
spec/odp/lru_cache_spec.rb
@@ -173,7 +173,7 @@
173
cache.save('1', 100)
174
cache.save('2', 200)
175
176
- cache.remove('3') # Doesn't exist
+ cache.remove('3') # Doesn't exist
177
178
expect(cache.lookup('1')).to eq 100
179
expect(cache.lookup('2')).to eq 200
0 commit comments