FilteredBlockAndPartialMerkleTreeTest: rename test class from plural to singular

This commit is contained in:
Andreas Schildbach 2022-04-01 21:37:47 +02:00
parent 3a3836b775
commit a4ccc9555a

View file

@ -34,7 +34,7 @@ import static org.bitcoinj.core.Utils.*;
import static org.junit.Assert.*;
@RunWith(value = Parameterized.class)
public class FilteredBlockAndPartialMerkleTreeTests extends TestWithPeerGroup {
public class FilteredBlockAndPartialMerkleTreeTest extends TestWithPeerGroup {
private static final BitcoinSerializer SERIALIZER = new BitcoinSerializer(UNITTEST, true);
@ -44,7 +44,7 @@ public class FilteredBlockAndPartialMerkleTreeTests extends TestWithPeerGroup {
new ClientType[] {ClientType.BLOCKING_CLIENT_MANAGER});
}
public FilteredBlockAndPartialMerkleTreeTests(ClientType clientType) {
public FilteredBlockAndPartialMerkleTreeTest(ClientType clientType) {
super(clientType);
}