Skip to content

Commit 5c71cac

Browse files
committed
[1.1.0]
ProxyStorageApiTest fix
1 parent 774201f commit 5c71cac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/io/api/etherscan/proxy/ProxyStorageApiTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ public void correct() {
2424

2525
@Test(expected = InvalidAddressException.class)
2626
public void invalidParamWithError() {
27-
Optional<String> call = getApi().proxy().storageAt("0xe03d9cce9d60f3e9f2597e13cd4c54c55330cfd", 0);
27+
getApi().proxy().storageAt("0xe03d9cce9d60f3e9f2597e13cd4c54c55330cfd", 0);
2828
}
2929

3030
@Test
3131
public void correctParamWithEmptyExpectedResult() {
32-
Optional<String> call = getApi().proxy().storageAt("0x6e03d9cce9d60f3e9f2597e13cd4c54c55330cfd", 100);
32+
final Optional<String> call = getApi().proxy().storageAt("0x6e03d9cce9d60f3e9f2597e13cd4c54c55330cfd", 10000);
3333
assertFalse(call.isPresent());
3434
}
3535
}

0 commit comments

Comments
 (0)