Skip to content

Commit

Permalink
fix code style (spotless)
Browse files Browse the repository at this point in the history
  • Loading branch information
rvullriede committed Aug 2, 2023
1 parent 004dbc7 commit d58612c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions core/src/test/java/org/web3j/protocol/core/ResponseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -603,11 +603,11 @@ public void testEthEstimateGas() {
@Test
public void testEthBaseFee() {
buildResponse(
"{\n"
+ " \"id\":1,\n"
+ " \"jsonrpc\": \"2.0\",\n"
+ " \"result\": \"0x5d21dba00\"\n"
+ "}");
"{\n"
+ " \"id\":1,\n"
+ " \"jsonrpc\": \"2.0\",\n"
+ " \"result\": \"0x5d21dba00\"\n"
+ "}");

EthBaseFee ethBaseFee = deserialiseResponse(EthBaseFee.class);
assertEquals(ethBaseFee.getBaseFee(), (BigInteger.valueOf(25000000000L)));
Expand Down Expand Up @@ -1810,4 +1810,4 @@ public void testTxPoolStatus() {
assertEquals(status.getPending(), 10);
assertEquals(status.getQueued(), 7);
}
}
}

0 comments on commit d58612c

Please sign in to comment.