[Low Risk Cleanup] Removes double semicolons (#16794)

This commit is contained in:
Kamron Batman 2019-11-05 11:33:58 -08:00 committed by Stephen Halter
parent 41195138b1
commit d4f7a199c7
7 changed files with 7 additions and 7 deletions

View File

@ -42,7 +42,7 @@ namespace Microsoft.AspNetCore.Components.E2ETest.Tests
[Fact] [Fact]
public async Task EditFormWorksWithDataAnnotationsValidator() public async Task EditFormWorksWithDataAnnotationsValidator()
{ {
var appElement = MountSimpleValidationComponent();; var appElement = MountSimpleValidationComponent();
var form = appElement.FindElement(By.TagName("form")); var form = appElement.FindElement(By.TagName("form"));
var userNameInput = appElement.FindElement(By.ClassName("user-name")).FindElement(By.TagName("input")); var userNameInput = appElement.FindElement(By.ClassName("user-name")).FindElement(By.TagName("input"));
var acceptsTermsInput = appElement.FindElement(By.ClassName("accepts-terms")).FindElement(By.TagName("input")); var acceptsTermsInput = appElement.FindElement(By.ClassName("accepts-terms")).FindElement(By.TagName("input"));

View File

@ -334,7 +334,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting.IIS
if (DeploymentParameters.RuntimeArchitecture == RuntimeArchitecture.x86) if (DeploymentParameters.RuntimeArchitecture == RuntimeArchitecture.x86)
{ {
pool.SetAttributeValue("enable32BitAppOnWin64", "true");; pool.SetAttributeValue("enable32BitAppOnWin64", "true");
} }
RunServerConfigActions(config, contentRoot); RunServerConfigActions(config, contentRoot);

View File

@ -328,7 +328,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core.Tests
// Read 0 bytes in 1 second // Read 0 bytes in 1 second
now += TimeSpan.FromSeconds(1); now += TimeSpan.FromSeconds(1);
_timeoutControl.Tick(now);; _timeoutControl.Tick(now);
// Timed out // Timed out
_mockTimeoutHandler.Verify(h => h.OnTimeout(TimeoutReason.ReadDataRate), Times.Once); _mockTimeoutHandler.Verify(h => h.OnTimeout(TimeoutReason.ReadDataRate), Times.Once);

View File

@ -606,7 +606,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests
Assert.True(task3Success.IsCompleted); Assert.True(task3Success.IsCompleted);
Assert.False(task3Success.IsCanceled); Assert.False(task3Success.IsCanceled);
Assert.False(task3Success.IsFaulted);; Assert.False(task3Success.IsFaulted);
} }
}); });
} }

View File

@ -237,7 +237,7 @@ public class Program
using (HttpResponseMessage m = await ctx.HttpClient.SendAsync(req)) using (HttpResponseMessage m = await ctx.HttpClient.SendAsync(req))
{ {
ValidateResponse(m, httpVersion); ValidateResponse(m, httpVersion);
ValidateContent(content, await m.Content.ReadAsStringAsync());; ValidateContent(content, await m.Content.ReadAsStringAsync());
} }
}), }),

View File

@ -58,7 +58,7 @@ namespace System.Buffers
_isDisposed = true; _isDisposed = true;
Array = null; Array = null;
NativePointer = IntPtr.Zero;; NativePointer = IntPtr.Zero;
if (_gcHandle.IsAllocated) if (_gcHandle.IsAllocated)
{ {

View File

@ -67,7 +67,7 @@ namespace Microsoft.AspNetCore.SignalR.Common.Tests.Internal.Formatters
{ {
var ex = Assert.Throws<FormatException>(() => var ex = Assert.Throws<FormatException>(() =>
{ {
var buffer = new ReadOnlySequence<byte>(payload);; var buffer = new ReadOnlySequence<byte>(payload);
BinaryMessageParser.TryParseMessage(ref buffer, out var message); BinaryMessageParser.TryParseMessage(ref buffer, out var message);
}); });
Assert.Equal("Messages over 2GB in size are not supported.", ex.Message); Assert.Equal("Messages over 2GB in size are not supported.", ex.Message);