Skip to content

Commit

Permalink
Reenable Http2_ServerSendsInvalidSettingsValue_Error test (#2134)
Browse files Browse the repository at this point in the history
  • Loading branch information
wfurt authored Jan 24, 2020
1 parent 1e09e98 commit cb1fc80
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public async Task<Http2LoopbackConnection> AcceptConnectionAsync()

public async Task<Http2LoopbackConnection> EstablishConnectionAsync(params SettingsEntry[] settingsEntries)
{
(Http2LoopbackConnection connection, _) = await EstablishConnectionGetSettingsAsync().ConfigureAwait(false);
(Http2LoopbackConnection connection, _) = await EstablishConnectionGetSettingsAsync(settingsEntries).ConfigureAwait(false);
return connection;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ public async Task Http2_ServerSendsValidSettingsValues_Success()
}
}

[ActiveIssue("https://github.com/dotnet/corefx/issues/35466")]
[ConditionalTheory(nameof(SupportsAlpn))]
[InlineData(SettingId.MaxFrameSize, 16383, ProtocolErrors.PROTOCOL_ERROR)]
[InlineData(SettingId.MaxFrameSize, 162777216, ProtocolErrors.PROTOCOL_ERROR)]
Expand Down

0 comments on commit cb1fc80

Please sign in to comment.