* Use spring.mongodb.embedded.version=3.5.5 - aligned with Spring Boot

This commit is contained in:
Artem Bilan
2022-01-25 09:37:14 -05:00
parent e5222501c8
commit fc6e93e820
3 changed files with 6 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2020-2020 the original author or authors.
* Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -41,7 +41,7 @@ import static org.assertj.core.api.Assertions.assertThat;
"aggregator.aggregation=#this.?[payload == 'foo'].![payload]",
"aggregator.messageStoreType=mongodb",
"aggregator.message-store-entity=aggregatorTest",
"spring.mongodb.embedded.version=latest" })
"spring.mongodb.embedded.version=3.5.5" })
@AutoConfigureDataMongo
public class CustomPropsAndMongoMessageStoreAggregatorTests extends AbstractAggregatorFunctionTests {