Skip to content

Commit

Permalink
Updating mongo image and testcontainers lib
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandonogueira committed Feb 27, 2019
1 parent 2e7f85c commit c9243d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.4.3</version>
<version>1.10.6</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/okra/base/OkraBaseContainerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
public abstract class OkraBaseContainerTest {

@ClassRule
public static GenericContainer mongoContainer = new GenericContainer("mongo:3.4").withExposedPorts(27017);
public static GenericContainer mongoContainer = new GenericContainer("mongo:4").withExposedPorts(27017);

private OkraSync<DefaultOkraItem> okra;
private MongoClient mongoClient;
Expand Down

0 comments on commit c9243d5

Please sign in to comment.