Commit f88ebf75 authored by Andy Wilkinson's avatar Andy Wilkinson

Use Mongo 3.5.5 by default with Embedded mongo

Closes gh-14476
parent 1a8f5199
......@@ -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();
......
......@@ -60,12 +60,12 @@ public class EmbeddedMongoAutoConfigurationTests {
@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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment