File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
tests/Microsoft.Graph.DotnetCore.Core.Test Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
- // ------------------------------------------------------------------------------
1
+ // ------------------------------------------------------------------------------
2
2
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3
3
// ------------------------------------------------------------------------------
4
4
5
-
6
5
using System ;
7
6
using System . Collections . Generic ;
8
7
using System . Threading ;
Original file line number Diff line number Diff line change @@ -318,7 +318,7 @@ public void CreateClientWithFinalHandlerDisposesTheFinalHandler(bool shouldDispo
318
318
}
319
319
320
320
[ Fact ]
321
- public async Task CreateClientWithAuthenticationProviderAuthenticatesRequest ( )
321
+ public async Task CreateClientWithAuthenticationProviderAuthenticatesRequestAsync ( )
322
322
{
323
323
var httpRequestMessage = new HttpRequestMessage ( HttpMethod . Post , "https://graph.microsoft.com/me" ) ;
324
324
var responseMessage = new HttpResponseMessage ( HttpStatusCode . OK ) ;
@@ -334,7 +334,7 @@ public async Task CreateClientWithAuthenticationProviderAuthenticatesRequest()
334
334
}
335
335
336
336
[ Fact ]
337
- public async Task CreateClientWithTokenCredentialAuthenticatesRequest ( )
337
+ public async Task CreateClientWithTokenCredentialAuthenticatesRequestAsync ( )
338
338
{
339
339
var httpRequestMessage = new HttpRequestMessage ( HttpMethod . Post , "https://graph.microsoft.com/me" ) ;
340
340
var responseMessage = new HttpResponseMessage ( HttpStatusCode . OK ) ;
You can’t perform that action at this time.
0 commit comments