Skip to content

Commit b080fcd

Browse files
authored
Fixed import in unit test.
1 parent a57a1dc commit b080fcd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/g0001_0100/s0001_two_sum/SolutionTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
import static org.hamcrest.CoreMatchers.equalTo;
44
import static org.hamcrest.MatcherAssert.assertThat;
55

6+
import java.util.Arrays;
67
import org.junit.Test;
78

89
public class SolutionTest {
910
@Test
1011
public void twoSum() {
1112
assertThat(
12-
java.util.Arrays.toString(new Solution().twoSum(new int[] {2, 7, 11, 15}, 9)),
13+
Arrays.toString(new Solution().twoSum(new int[] {2, 7, 11, 15}, 9)),
1314
equalTo("[0, 1]"));
1415
}
1516
}

0 commit comments

Comments
 (0)