Skip to content

Commit

Permalink
Fixed * imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandrouR committed Jan 13, 2020
1 parent ecb0af7 commit e19ae43
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion crypto/src/test/java/org/web3j/crypto/KeysTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
import org.web3j.utils.Numeric;
import org.web3j.utils.Strings;

import static org.junit.jupiter.api.Assertions.*;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertThrows;

public class KeysTest {

Expand Down
6 changes: 5 additions & 1 deletion utils/src/test/java/org/web3j/utils/NumericTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
import org.web3j.exceptions.MessageDecodingException;
import org.web3j.exceptions.MessageEncodingException;

import static org.junit.jupiter.api.Assertions.*;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.web3j.utils.Numeric.asByte;

public class NumericTest {
Expand Down

0 comments on commit e19ae43

Please sign in to comment.