Skip to content

Commit

Permalink
[RESTEASY-3261] Fix the UriInfoTest.
Browse files Browse the repository at this point in the history
https://issues.redhat.com/browse/RESTEASY-3261
Signed-off-by: James R. Perkins <jperkins@redhat.com>
  • Loading branch information
jamezp committed Dec 13, 2022
1 parent 946c998 commit 8a22637
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -95,7 +95,7 @@ public void testCannotDetermineHost() {
try {
extractor.extract(req, "/contextPath");
fail("Inability to determine a host address should have thrown an IllegalArgumentException.");
} catch (final AssertionError ae) {
} catch (final IllegalArgumentException ignore) {
} catch (final Exception e) {
fail("Inability to determine a host address should have thrown an IllegalArgumentException.");
}
Expand Down

0 comments on commit 8a22637

Please sign in to comment.