Skip to content

Commit 9d7c243

Browse files
committed
Cleanup Usings
1 parent 1b76cda commit 9d7c243

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

UiTests/GraphUserTokenCache/GraphUserTokenCacheTest.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
using System;
5-
using System.Collections.Generic;
6-
using System.IO;
7-
using System.Linq;
8-
using System.Runtime.Versioning;
9-
using System.Text;
10-
using System.Threading.Tasks;
114
using Common;
125
using Microsoft.Identity.Lab.Api;
136
using Microsoft.Playwright;
7+
using System.Text;
148
using Xunit;
159
using Xunit.Abstractions;
1610
using Process = System.Diagnostics.Process;
@@ -30,10 +24,10 @@ public class GraphUserTokenCacheTest
3024
private const string SqlTableName = "TokenCache";
3125
private const string TraceFileClassName = "GraphUserTokenCacheTest";
3226
private readonly LocatorAssertionsToBeVisibleOptions _assertVisibleOptions = new() { Timeout = 25000 };
27+
private readonly ITestOutputHelper _output;
3328
private readonly string _sampleAppPath = "2-WebApp-graph-user" + Path.DirectorySeparatorChar + "2-2-TokenCache" + Path.DirectorySeparatorChar.ToString();
3429
private readonly string _testAppsettingsPath = "UiTests" + Path.DirectorySeparatorChar + "GraphUserTokenCache" + Path.DirectorySeparatorChar.ToString() + TC.AppSetttingsDotJson;
3530
private readonly string _testAssemblyLocation = typeof(GraphUserTokenCacheTest).Assembly.Location;
36-
private readonly ITestOutputHelper _output;
3731

3832
public GraphUserTokenCacheTest(ITestOutputHelper output)
3933
{

0 commit comments

Comments
 (0)