BAEL-3499 Fixed integration test

This commit is contained in:
Priyesh Mashelkar 2020-02-15 23:16:12 +00:00
parent 49cda16d69
commit 394711c03e
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"));
}
}