Skip to content

Commit

Permalink
restored ClientTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
NaluTripician committed Sep 14, 2022
1 parent 6ebec43 commit 5951129
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ namespace Microsoft.Azure.Cosmos.SDK.EmulatorTests
{
using System;
using System.Collections.Generic;
using System.Data.Common;
using System.Diagnostics;
using System.Formats.Asn1;
using System.IO;
Expand Down Expand Up @@ -863,6 +862,7 @@ public async Task HttpClientConnectionLimitTest()
Assert.IsTrue(connectionDiff <= gatewayConnectionLimit, $"Connection before : {excludeConnections.Count}, after {afterConnections.Count};" +
$"Before connections: {JsonConvert.SerializeObject(excludeConnections)}; After connections: {JsonConvert.SerializeObject(afterConnections)}");
}

public static IReadOnlyList<string> GetActiveConnections()
{
string testPid = Process.GetCurrentProcess().Id.ToString();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ public void WithQuorumReadWithEventualConsistencyAccount()
public void InvalidApplicationNameCatchTest()
{

string[] illegalChars = new string[] { "<", ">", "\"", "{", "}", "\\", "[", "]", ";", "/", ":", "@", "=", "(", ")", "," };
string[] illegalChars = new string[] { "<", ">", "\"", "{", "}", "\\", "[", "]", ";", ":", "@", "=", "(", ")", "," };
string baseName = "illegal";

foreach (string illegal in illegalChars)
Expand Down

0 comments on commit 5951129

Please sign in to comment.