File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
test/Microsoft.OpenApi.SmokeTests Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public ApisGuruTests(ITestOutputHelper output)
27
27
28
28
static ApisGuruTests ( )
29
29
{
30
- System . Net . ServicePointManager . SecurityProtocol = SecurityProtocolType . Tls12 ;
30
+ ServicePointManager . SecurityProtocol = SecurityProtocolType . Tls12 ;
31
31
_httpClient = new ( new HttpClientHandler
32
32
{
33
33
AutomaticDecompression = DecompressionMethods . GZip
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public class GraphTests
19
19
public GraphTests ( ITestOutputHelper output )
20
20
{
21
21
_output = output ;
22
- System . Net . ServicePointManager . SecurityProtocol = SecurityProtocolType . Tls12 ;
22
+ ServicePointManager . SecurityProtocol = SecurityProtocolType . Tls12 ;
23
23
_httpClient = new ( new HttpClientHandler
24
24
{ AutomaticDecompression = DecompressionMethods . GZip
25
25
} ) ;
You can’t perform that action at this time.
0 commit comments