Fixing testcase expectation

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2020-09-30 10:04:51 -05:00
parent 8ff02018ef
commit 525fc249ea
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ public class TestJettyOSGiBootWithAnnotations
assertEquals("Response status code", HttpStatus.OK_200, response.getStatus());
String content = response.getContentAsString();
TestOSGiUtil.assertContains("Response contents", content, "Test WebApp");
TestOSGiUtil.assertContains("Response contents", content, "Test Specification WebApp");
Request req = client.POST("http://127.0.0.1:" + port + "/test");
response = req.send();