Skip to content

Commit 8113199

Browse files
committed
Fix log
1 parent cf751af commit 8113199

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libraries/System.Net.Quic/tests/FunctionalTests/QuicTestCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public QuicTestCollection()
2828
string msQuicLibraryVersion = GetMsQuicLibraryVersion();
2929
string tlsBackend = IsUsingSchannelBackend() ? "Schannel" : "OpenSSL";
3030
// If any of the reflection bellow breaks due to changes in "System.Net.Quic.MsQuicApi", also check and fix HttpStress project as it uses the same hack.
31-
Console.WriteLine($"MsQuic {(IsSupported ? "supported" : "not supported")} and using '{msQuicLibraryVersion}' {(IsSupported ? "({tlsBackend})" : "")}.");
31+
Console.WriteLine($"MsQuic {(IsSupported ? "supported" : "not supported")} and using '{msQuicLibraryVersion}' {(IsSupported ? $"({tlsBackend})" : "")}.");
3232

3333
if (IsSupported)
3434
{

0 commit comments

Comments
 (0)