On Tue, 11 Aug 2026 11:57:39 GMT, Jaikiran Pai <[email protected]> wrote:
>> test/jdk/java/net/httpclient/http2/H2GoAwayTest.java line 128:
>>
>>> 126: () -> client.send(req,
>>> BodyHandlers.discarding()));
>>> 127: final String actual = ioe.getMessage();
>>> 128: if (actual != null &&
>>> actual.contains(ioe.getMessage())) {
>>
>> Should this be:
>> `actual.contains(expectedExMsg)` since actual is already ioe.getMessage()?
>
> Good catch, and that's a pretty bad typo. I've updated the PR to fix it. The
> test continues to pass with this update. I have triggered a new test repeat
> run to be sure that it tests the right thing and there aren't any
> intermittent failures.
Testing completed without any failures.
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/32278#discussion_r3763619258