Skip to content

Commit

Permalink
[Java] Upgrade to hamcrest 2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjpt777 committed May 8, 2019
1 parent 0f308f4 commit ea35e4e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ subprojects {

compile 'org.agrona:agrona:1.0.0'

testCompile 'junit:junit:4.12'
testCompile 'org.hamcrest:hamcrest:2.1'
testCompile 'org.mockito:mockito-core:2.27.0'
testCompile 'org.hamcrest:hamcrest-library:1.3'
testCompile 'junit:junit:4.12'
}

checkstyle {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import java.nio.ByteOrder;
import java.util.Map;

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.greaterThan;
import static org.hamcrest.Matchers.hasToString;
import static org.hamcrest.Matchers.startsWith;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

import java.util.Map;

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.*;
import static uk.co.real_logic.sbe.generation.java.ReflectionUtil.get;
import static uk.co.real_logic.sbe.generation.java.ReflectionUtil.set;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import java.util.Optional;
import java.util.concurrent.TimeUnit;

import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.Matchers.containsString;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import static uk.co.real_logic.sbe.generation.rust.RustTest.minimalDummyIr;
Expand Down

0 comments on commit ea35e4e

Please sign in to comment.