Unquarantine tests that have passed for 30+ days (#23011)

This commit is contained in:
Safia Abdalla 2020-06-16 16:23:50 -07:00 committed by GitHub
parent ff4cea0820
commit 51f977db2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 8 deletions

View File

@ -499,7 +499,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
} }
[Theory] [Theory]
[QuarantinedTest]
[MemberData(nameof(ConnectionMiddlewareData))] [MemberData(nameof(ConnectionMiddlewareData))]
public async Task ConnectionClosedTokenFiresOnClientFIN(ListenOptions listenOptions) public async Task ConnectionClosedTokenFiresOnClientFIN(ListenOptions listenOptions)
{ {

View File

@ -32,7 +32,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
private CommandContext MakeCommandContext() => new CommandContext(null, new TestReporter(_output), _console); private CommandContext MakeCommandContext() => new CommandContext(null, new TestReporter(_output), _console);
[Fact] [Fact]
[QuarantinedTest]
public void AddsSecretIdToProject() public void AddsSecretIdToProject()
{ {
var projectDir = _fixture.CreateProject(null); var projectDir = _fixture.CreateProject(null);
@ -45,7 +44,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
} }
[Fact] [Fact]
[QuarantinedTest]
public void AddsSpecificSecretIdToProject() public void AddsSpecificSecretIdToProject()
{ {
const string SecretId = "TestSecretId"; const string SecretId = "TestSecretId";
@ -60,7 +58,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
} }
[Fact] [Fact]
[QuarantinedTest]
public void AddsEscapedSpecificSecretIdToProject() public void AddsEscapedSpecificSecretIdToProject()
{ {
const string SecretId = @"<lots of XML invalid values>&"; const string SecretId = @"<lots of XML invalid values>&";
@ -75,7 +72,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
} }
[Fact] [Fact]
[QuarantinedTest]
public void DoesNotGenerateIdForProjectWithSecretId() public void DoesNotGenerateIdForProjectWithSecretId()
{ {
const string SecretId = "AlreadyExists"; const string SecretId = "AlreadyExists";
@ -118,7 +114,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
} }
[Fact] [Fact]
[QuarantinedTest]
public void OverridesIdForProjectWithSecretId() public void OverridesIdForProjectWithSecretId()
{ {
const string SecretId = "AlreadyExists"; const string SecretId = "AlreadyExists";

View File

@ -82,7 +82,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
[Theory] [Theory]
[InlineData(true)] [InlineData(true)]
[InlineData(false)] [InlineData(false)]
[QuarantinedTest]
public void SetSecrets(bool fromCurrentDirectory) public void SetSecrets(bool fromCurrentDirectory)
{ {
var secrets = new KeyValuePair<string, string>[] var secrets = new KeyValuePair<string, string>[]
@ -271,7 +270,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
[Theory] [Theory]
[InlineData(true)] [InlineData(true)]
[InlineData(false)] [InlineData(false)]
[QuarantinedTest]
public void Clear_Secrets(bool fromCurrentDirectory) public void Clear_Secrets(bool fromCurrentDirectory)
{ {
var projectPath = _fixture.GetTempSecretProject(); var projectPath = _fixture.GetTempSecretProject();