Use correct equality in CacheTests#testReplaceRecomputesSize.Value

This commit is contained in:
Jason Tedor 2015-11-22 19:56:27 -05:00
parent bc0a840a9c
commit 14a635fe4b
1 changed files with 1 additions and 2 deletions

View File

@ -413,8 +413,7 @@ public class CacheTests extends ESTestCase {
Value that = (Value) o;
return value == that.value;
return value.equals(that.value);
}
@Override