Skip to content

Commit b77114d

Browse files
committed
Fix format issues
1 parent 931037c commit b77114d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

tests/Microsoft.Graph.DotnetCore.Core.Test/Mocks/MockAccessTokenProvider.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// ------------------------------------------------------------------------------
1+
// ------------------------------------------------------------------------------
22
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
33
// ------------------------------------------------------------------------------
44

5-
65
using System;
76
using System.Collections.Generic;
87
using System.Threading;

tests/Microsoft.Graph.DotnetCore.Core.Test/Requests/GraphClientFactoryTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ public void CreateClientWithFinalHandlerDisposesTheFinalHandler(bool shouldDispo
318318
}
319319

320320
[Fact]
321-
public async Task CreateClientWithAuthenticationProviderAuthenticatesRequest()
321+
public async Task CreateClientWithAuthenticationProviderAuthenticatesRequestAsync()
322322
{
323323
var httpRequestMessage = new HttpRequestMessage(HttpMethod.Post, "https://graph.microsoft.com/me");
324324
var responseMessage = new HttpResponseMessage(HttpStatusCode.OK);
@@ -334,7 +334,7 @@ public async Task CreateClientWithAuthenticationProviderAuthenticatesRequest()
334334
}
335335

336336
[Fact]
337-
public async Task CreateClientWithTokenCredentialAuthenticatesRequest()
337+
public async Task CreateClientWithTokenCredentialAuthenticatesRequestAsync()
338338
{
339339
var httpRequestMessage = new HttpRequestMessage(HttpMethod.Post, "https://graph.microsoft.com/me");
340340
var responseMessage = new HttpResponseMessage(HttpStatusCode.OK);

0 commit comments

Comments
 (0)