Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/libraries/System.Net.Requests/tests/QuicLoad.cs
  • Loading branch information
jkotas authored and github-actions committed Sep 12, 2022
commit 81e6c4f9c76cb6c92c54aa7cb67bcb77993cc00a
2 changes: 1 addition & 1 deletion src/libraries/System.Net.Requests/tests/QuicLoad.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ internal static void InitializeQuic()
// See https://github.com/dotnet/runtime/pull/75424 for more details
// IsSupported currently does not unload lttng. If it does in the future,
// we may need to call some real Quic API here to get everything loaded properly
_ = QuicConnection.IsSupported && QuicListener.IsSupported;
_ = OperatingSystem.IsLinux() && QuicConnection.IsSupported;
}
}
}