mirror of https://github.com/grpc/grpc-java.git
Suppress CheckReturnValue error in PersistentHashArrayMappedTrieTest (#9038)
This commit is contained in:
parent
f04a49a7bd
commit
71d38f5cae
|
|
@ -84,6 +84,7 @@ public class PersistentHashArrayMappedTrieTest {
|
|||
assertEquals(2, ret.size());
|
||||
}
|
||||
|
||||
@SuppressWarnings("CheckReturnValue")
|
||||
@Test
|
||||
public void collisionLeaf_assertKeysDifferent() {
|
||||
Key key1 = new Key(0);
|
||||
|
|
@ -94,6 +95,7 @@ public class PersistentHashArrayMappedTrieTest {
|
|||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings("CheckReturnValue")
|
||||
@Test
|
||||
public void collisionLeaf_assertHashesSame() {
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in New Issue