@@ -65,7 +65,7 @@ void sendCallErrorResponseNotRevert() throws IOException {
65
65
66
66
String result =
67
67
clientTransactionManager .sendCall (
68
- "0xAdress " , "data" , DefaultBlockParameter .valueOf ("latest" ));
68
+ "0xAddress " , "data" , DefaultBlockParameter .valueOf ("latest" ));
69
69
70
70
assertEquals (responseData , result );
71
71
}
@@ -87,7 +87,7 @@ void sendCallErrorRevertByCode() throws IOException {
87
87
ContractCallException .class ,
88
88
() ->
89
89
clientTransactionManager .sendCall (
90
- "0xAdress " , "data" , DefaultBlockParameter .valueOf ("latest" )));
90
+ "0xAddress " , "data" , DefaultBlockParameter .valueOf ("latest" )));
91
91
}
92
92
93
93
@ Test
@@ -107,7 +107,7 @@ void sendCallErrorRevertByDataNull() throws IOException {
107
107
ContractCallException .class ,
108
108
() ->
109
109
clientTransactionManager .sendCall (
110
- "0xAdress " , "data" , DefaultBlockParameter .valueOf ("latest" )));
110
+ "0xAddress " , "data" , DefaultBlockParameter .valueOf ("latest" )));
111
111
}
112
112
113
113
@ Test
@@ -122,7 +122,7 @@ void sendCallErrorSuccess() throws IOException {
122
122
123
123
String result =
124
124
clientTransactionManager .sendCall (
125
- "0xAdress " , "data" , DefaultBlockParameter .valueOf ("latest" ));
125
+ "0xAddress " , "data" , DefaultBlockParameter .valueOf ("latest" ));
126
126
127
127
assertEquals (responseData , result );
128
128
}
0 commit comments