File tree 3 files changed +4
-4
lines changed
test/FunctionalTests/Http2
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ public async Task GrpcTemplate()
44
44
if ( RuntimeInformation . IsOSPlatform ( OSPlatform . OSX ) )
45
45
{
46
46
Assert . True ( serverProcess . Process . HasExited , "built" ) ;
47
- Assert . Contains ( "System.NotSupportedException: HTTP/2 over TLS is not supported on OSX due to missing ALPN support." ,
47
+ Assert . Contains ( "System.NotSupportedException: HTTP/2 over TLS is not supported on macOS due to missing ALPN support." ,
48
48
ErrorMessages . GetFailedProcessMessageOrEmpty ( "Run built service" , Project , serverProcess . Process ) ) ;
49
49
}
50
50
else if ( RuntimeInformation . IsOSPlatform ( OSPlatform . Windows ) && Environment . OSVersion . Version < new Version ( 6 , 2 ) )
@@ -68,7 +68,7 @@ public async Task GrpcTemplate()
68
68
if ( RuntimeInformation . IsOSPlatform ( OSPlatform . OSX ) )
69
69
{
70
70
Assert . True ( aspNetProcess . Process . HasExited , "published" ) ;
71
- Assert . Contains ( "System.NotSupportedException: HTTP/2 over TLS is not supported on OSX due to missing ALPN support." ,
71
+ Assert . Contains ( "System.NotSupportedException: HTTP/2 over TLS is not supported on macOS due to missing ALPN support." ,
72
72
ErrorMessages . GetFailedProcessMessageOrEmpty ( "Run published service" , Project , aspNetProcess . Process ) ) ;
73
73
}
74
74
else if ( RuntimeInformation . IsOSPlatform ( OSPlatform . Windows ) && Environment . OSVersion . Version < new Version ( 6 , 2 ) )
Original file line number Diff line number Diff line change @@ -606,7 +606,7 @@ For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?l
606
606
<value >The request trailers are not available yet. They may not be available until the full request body is read.</value >
607
607
</data >
608
608
<data name =" HTTP2NoTlsOsx" xml : space =" preserve" >
609
- <value >HTTP/2 over TLS is not supported on OSX due to missing ALPN support.</value >
609
+ <value >HTTP/2 over TLS is not supported on macOS due to missing ALPN support.</value >
610
610
</data >
611
611
<data name =" HTTP2NoTlsWin7" xml : space =" preserve" >
612
612
<value >HTTP/2 over TLS is not supported on Windows 7 due to missing ALPN support.</value >
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public void TlsAndHttp2NotSupportedOnMac()
53
53
} ) ;
54
54
} ) ) ;
55
55
56
- Assert . Equal ( "HTTP/2 over TLS is not supported on OSX due to missing ALPN support." , ex . Message ) ;
56
+ Assert . Equal ( "HTTP/2 over TLS is not supported on macOS due to missing ALPN support." , ex . Message ) ;
57
57
}
58
58
59
59
You can’t perform that action at this time.
0 commit comments