And fixed a test

This commit is contained in:
2025-04-05 20:51:46 -05:00
parent 17eab1f3d4
commit af51641d2a

View File

@ -291,7 +291,7 @@ class QApplicationJavalinServerTest
response = Unirest.get("http://localhost:" + PORT + "/protected-served-by-process/foo.html")
.asString();
assertEquals(200, response.getStatus());
assertEquals("So you've asked for: /protected-served-by-process/foo.html", response.getBody());
assertEquals("So you've done a GET for: /protected-served-by-process/foo.html", response.getBody());
}