Skip to content

Commit

Permalink
Issue #7132 correct test
Browse files Browse the repository at this point in the history
  • Loading branch information
janbartel committed Nov 19, 2021
1 parent 91f7039 commit 6bbc7c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public void testJNDIWar() throws Exception
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
assertEquals(200, connection.getResponseCode());
String content = IO.toString((InputStream)connection.getContent());
assertThat(content, Matchers.containsString("JNDI Test WebApp"));
assertThat(content, Matchers.containsString("JNDI Demo WebApp"));

server.stop();
}
Expand Down

0 comments on commit 6bbc7c0

Please sign in to comment.