Skip to content

Commit

Permalink
client version fix
Browse files Browse the repository at this point in the history
Signed-off-by: Nischal Sharma <nischal@web3labs.com>
  • Loading branch information
NickSneo committed Sep 18, 2023
1 parent b3a7e93 commit ffcbfdf
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@

/** Test designed to run with besu-quickstart https://github.com/Consensys/quorum-dev-quickstart */
public class BesuPrivacyQuickstartIntegrationTest {

private static final String CLIENT_VERSION = "besu/v23.4.1/linux-aarch_64/openjdk-java-17";
private static final int CHAIN_ID = 1337;

private static final String HUMAN_STANDARD_TOKEN_BINARY =
Expand Down Expand Up @@ -100,11 +98,10 @@ public static void stopNetwork() {

@Test
public void testConnection() throws IOException {
assertEquals(rpcNode.web3ClientVersion().send().getWeb3ClientVersion(), (CLIENT_VERSION));
assertEquals(nodeAlice.web3ClientVersion().send().getWeb3ClientVersion(), (CLIENT_VERSION));
assertEquals(nodeBob.web3ClientVersion().send().getWeb3ClientVersion(), (CLIENT_VERSION));
assertEquals(
nodeCharlie.web3ClientVersion().send().getWeb3ClientVersion(), (CLIENT_VERSION));
assertNotNull(rpcNode.web3ClientVersion().send().getWeb3ClientVersion());
assertNotNull(nodeAlice.web3ClientVersion().send().getWeb3ClientVersion());
assertNotNull(nodeBob.web3ClientVersion().send().getWeb3ClientVersion());
assertNotNull(nodeCharlie.web3ClientVersion().send().getWeb3ClientVersion());
}

@Test
Expand Down

0 comments on commit ffcbfdf

Please sign in to comment.