We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 774201f commit 5c71cacCopy full SHA for 5c71cac
src/test/java/io/api/etherscan/proxy/ProxyStorageApiTest.java
@@ -24,12 +24,12 @@ public void correct() {
24
25
@Test(expected = InvalidAddressException.class)
26
public void invalidParamWithError() {
27
- Optional<String> call = getApi().proxy().storageAt("0xe03d9cce9d60f3e9f2597e13cd4c54c55330cfd", 0);
+ getApi().proxy().storageAt("0xe03d9cce9d60f3e9f2597e13cd4c54c55330cfd", 0);
28
}
29
30
@Test
31
public void correctParamWithEmptyExpectedResult() {
32
- Optional<String> call = getApi().proxy().storageAt("0x6e03d9cce9d60f3e9f2597e13cd4c54c55330cfd", 100);
+ final Optional<String> call = getApi().proxy().storageAt("0x6e03d9cce9d60f3e9f2597e13cd4c54c55330cfd", 10000);
33
assertFalse(call.isPresent());
34
35
0 commit comments