Skip to content

Commit

Permalink
Fix style check
Browse files Browse the repository at this point in the history
  • Loading branch information
bryce-anderson committed Dec 2, 2024
1 parent dddf0a9 commit 97d3570
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,9 @@ void testStopAcceptingConnections(final boolean dryRun, final String protocol) t
// This connection shall full-fil the BACKLOG=1 setting
try {
assertThat(client.reserveConnection(client.newRequest(HttpRequestMethod.GET, "/"))
.toFuture().get().asConnection(), instanceOf(HttpConnection.class)); // This is the failing line. https://github.com/apple/servicetalk/actions/runs/12129341561/job/33817567364?pr=3125
// This is the failing line.
// https://github.com/apple/servicetalk/actions/runs/12129341561/job/33817567364?pr=3125
.toFuture().get().asConnection(), instanceOf(HttpConnection.class));
} catch (ExecutionException e) {
if (dryRun) {
throw e;
Expand Down

0 comments on commit 97d3570

Please sign in to comment.