Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
chloefeal committed Dec 25, 2024
1 parent d952334 commit 9333d92
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void sendCallErrorResponseNotRevert() throws IOException {

String result =
clientTransactionManager.sendCall(
"0xAdress", "data", DefaultBlockParameter.valueOf("latest"));
"0xAddress", "data", DefaultBlockParameter.valueOf("latest"));

assertEquals(responseData, result);
}
Expand All @@ -87,7 +87,7 @@ void sendCallErrorRevertByCode() throws IOException {
ContractCallException.class,
() ->
clientTransactionManager.sendCall(
"0xAdress", "data", DefaultBlockParameter.valueOf("latest")));
"0xAddress", "data", DefaultBlockParameter.valueOf("latest")));
}

@Test
Expand All @@ -107,7 +107,7 @@ void sendCallErrorRevertByDataNull() throws IOException {
ContractCallException.class,
() ->
clientTransactionManager.sendCall(
"0xAdress", "data", DefaultBlockParameter.valueOf("latest")));
"0xAddress", "data", DefaultBlockParameter.valueOf("latest")));
}

@Test
Expand All @@ -122,7 +122,7 @@ void sendCallErrorSuccess() throws IOException {

String result =
clientTransactionManager.sendCall(
"0xAdress", "data", DefaultBlockParameter.valueOf("latest"));
"0xAddress", "data", DefaultBlockParameter.valueOf("latest"));

assertEquals(responseData, result);
}
Expand Down

0 comments on commit 9333d92

Please sign in to comment.