Skip to content

Commit 257ada5

Browse files
committed
Responding to review feedback
1 parent e8f24be commit 257ada5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Common/Commands.ScenarioTests.Common/Mocks/MockClientFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public TClient CreateCustomClient<TClient>(params object[] parameters) where TCl
112112
else
113113
{
114114
// Use the WithHandler method to create an extra reference to the http client
115-
// this will prevent the httpClient from being disposed in a long-runnign test using
115+
// this will prevent the httpClient from being disposed in a long-running test using
116116
// the same client for multiple cmdlets
117117
client = client.WithHandler(new PassThroughDelegatingHandler());
118118
}
@@ -174,7 +174,7 @@ public void AddUserAgent(string productName)
174174

175175
/// <summary>
176176
/// This class exists to allow adding an additional reference to the httpClient to prevent the client
177-
/// from being disposed. Should not be used execpt in this mocked context
177+
/// from being disposed. Should not be used execpt in this mocked context.
178178
/// </summary>
179179
class PassThroughDelegatingHandler : DelegatingHandler
180180
{

src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVip.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.WindowsAzure.Management.Compute;
16-
using Microsoft.WindowsAzure.Management.Storage;
1715

1816
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.ScenarioTests
1917
{
2018
using Microsoft.Azure.Common.Authentication;
2119
using Microsoft.Azure.Test;
2220
using Microsoft.WindowsAzure.Commands.ScenarioTest;
2321
using Microsoft.WindowsAzure.Management;
22+
using Microsoft.WindowsAzure.Management.Compute;
2423
using Microsoft.WindowsAzure.Management.Network;
24+
using Microsoft.WindowsAzure.Management.Storage;
2525
using System.Collections.Generic;
2626
using System.IO;
2727
using System.Linq;

0 commit comments

Comments
 (0)