Merge pull request #8730 from priyeshmashelkar/BAEL-3499

BAEL-3499 Fixed integration test
This commit is contained in:
Dhawal Kapil
2020-02-16 20:04:10 +05:30
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -1 +1,2 @@
application-version=@project.version@
application-version=@project.version@
application-description=@project.description@

View File

@@ -18,7 +18,7 @@ class BuildInfoServiceIntegrationTest {
@Test
void whenGetApplicationDescription_thenSuccess() {
assertThat(service.getApplicationDescription(), Matchers.is("This is simple boot application for Spring boot actuator test"));
assertThat(service.getApplicationDescription(), Matchers.is("Spring Boot Properties Module"));
assertThat(service.getApplicationVersion(), Matchers.is("0.0.1-SNAPSHOT"));
}
}