Skip to content

Commit

Permalink
Use Mongo 3.5.5 by default with Embedded mongo
Browse files Browse the repository at this point in the history
Closes gh-14476
  • Loading branch information
wilkinsona committed Sep 25, 2018
1 parent 1a8f519 commit f88ebf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class EmbeddedMongoProperties {
/**
* Version of Mongo to use.
*/
private String version = "3.6.5";
private String version = "3.5.5";

private final Storage storage = new Storage();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ public void close() {

@Test
public void defaultVersion() {
assertVersionConfiguration(null, "3.6.5");
assertVersionConfiguration(null, "3.5.5");
}

@Test
public void customVersion() {
assertVersionConfiguration("3.6.3", "3.6.3");
assertVersionConfiguration("3.4.15", "3.4.15");
}

@Test
Expand Down

0 comments on commit f88ebf7

Please sign in to comment.