Commit dd11b8ad authored by dreis2211's avatar dreis2211 Committed by Stephane Nicoll

Fix checkstyle violation

See gh-21266
parent 1abe0f16
...@@ -49,16 +49,13 @@ class MongoReactiveDataAutoConfigurationTests { ...@@ -49,16 +49,13 @@ class MongoReactiveDataAutoConfigurationTests {
@Test @Test
void whenNoGridFsDatabaseIsConfiguredTheGridFsTemplateUsesTheMainDatabase() { void whenNoGridFsDatabaseIsConfiguredTheGridFsTemplateUsesTheMainDatabase() {
this.contextRunner.run((context) -> { this.contextRunner.run((context) -> assertThat(grisFsTemplateDatabaseName(context)).isEqualTo("test"));
assertThat(grisFsTemplateDatabaseName(context)).isEqualTo("test");
});
} }
@Test @Test
void whenGridFsDatabaseIsConfiguredThenGridFsTemplateUsesIt() { void whenGridFsDatabaseIsConfiguredThenGridFsTemplateUsesIt() {
this.contextRunner.withPropertyValues("spring.data.mongodb.gridFsDatabase:grid").run((context) -> { this.contextRunner.withPropertyValues("spring.data.mongodb.gridFsDatabase:grid")
assertThat(grisFsTemplateDatabaseName(context)).isEqualTo("grid"); .run((context) -> assertThat(grisFsTemplateDatabaseName(context)).isEqualTo("grid"));
});
} }
@Test @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