Skip to content

Commit 4d11757

Browse files
committed
Update Flapdoodle Embed Mongo 2.2.0
1 parent 1692b1a commit 4d11757

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies {
4545
provided "org.grails:grails-plugin-testing"
4646
provided "org.grails:grails-gorm-testing-support"
4747
provided "org.grails:grails-web-testing-support"
48-
compile("de.flapdoodle.embed:de.flapdoodle.embed.mongo:1.50.5") {
48+
compile("de.flapdoodle.embed:de.flapdoodle.embed.mongo:2.2.0") {
4949
exclude group: "commons-io"
5050
exclude group: "org.apache.commons"
5151
exclude group: "net.java.dev.jna"

src/test/groovy/org/grails/plugin/embedded/mongodb/EmbeddedMongoDBGrailsPluginSpec.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ class EmbeddedMongoDBGrailsPluginSpec extends Specification {
2727
given:
2828
GrailsApplication grailsApplication = Mock(GrailsApplication) {
2929
1 * getConfig() >> {
30-
new PropertySourcesConfig([grails: [mongodb: [version: "3.2.1"]]])
30+
new PropertySourcesConfig([grails: [mongodb: [version: "4.0.2"]]])
3131
}
3232
}
3333

3434
expect:
35-
new EmbeddedMongoDBGrailsPlugin(grailsApplication: grailsApplication).getVersion() == Version.V3_2_1
35+
new EmbeddedMongoDBGrailsPlugin(grailsApplication: grailsApplication).getVersion() == Version.V4_0_2
3636
}
3737

3838
void "test version release candidate"() {

0 commit comments

Comments
 (0)