This is an automated email from the ASF dual-hosted git repository. toulmean pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git
commit d12dd501f8fe65bbf6cebeeaaff9a3a77f79938f Author: Antoine Toulme <[email protected]> AuthorDate: Tue Jun 9 00:49:43 2020 -0700 use correct class to load --- .../kotlin/org/apache/tuweni/devp2p/eth/ConnectToAnotherNodeTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devp2p-eth/src/integrationTest/kotlin/org/apache/tuweni/devp2p/eth/ConnectToAnotherNodeTest.kt b/devp2p-eth/src/integrationTest/kotlin/org/apache/tuweni/devp2p/eth/ConnectToAnotherNodeTest.kt index 147c779..656817c 100644 --- a/devp2p-eth/src/integrationTest/kotlin/org/apache/tuweni/devp2p/eth/ConnectToAnotherNodeTest.kt +++ b/devp2p-eth/src/integrationTest/kotlin/org/apache/tuweni/devp2p/eth/ConnectToAnotherNodeTest.kt @@ -49,7 +49,7 @@ class ConnectToAnotherNodeTest { @Disabled @Test fun testCollectHeaders(@LuceneIndexWriter writer: IndexWriter, @VertxInstance vertx: Vertx) = runBlocking { - val contents = EthHandlerTest::class.java.getResourceAsStream("/mainnet.json").readAllBytes() + val contents = ConnectToAnotherNodeTest::class.java.getResourceAsStream("/mainnet.json").readAllBytes() val genesisFile = GenesisFile.read(contents) val genesisBlock = genesisFile.toBlock() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
