Upgrade to support Spring Boot 2.2.
* Remove unused profiles and plugins from the build. * Update the main README.
This commit is contained in:
@@ -101,7 +101,7 @@ public class ReactiveMongoWebSessionConfigurationTest {
|
||||
|
||||
AbstractMongoSessionConverter converter = findMongoSessionConverter(repository);
|
||||
|
||||
assertThat(converter).extracting(AbstractMongoSessionConverter::getClass).contains(JdkMongoSessionConverter.class);
|
||||
assertThat(converter).isOfAnyClassIn(JdkMongoSessionConverter.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -116,8 +116,7 @@ public class ReactiveMongoWebSessionConfigurationTest {
|
||||
|
||||
AbstractMongoSessionConverter converter = findMongoSessionConverter(repository);
|
||||
|
||||
assertThat(converter).extracting(AbstractMongoSessionConverter::getClass)
|
||||
.contains(JacksonMongoSessionConverter.class);
|
||||
assertThat(converter).isOfAnyClassIn(JacksonMongoSessionConverter.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user