From 7b243047393fc6dd60b6b3eab778a314d1a81699 Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Mon, 4 Mar 2019 07:50:53 -0800 Subject: [PATCH] skip flaky SecureDataFormatTest in Helix (#8129) related #7366 --- .../test/Microsoft.AspNetCore.Authentication.Test.csproj | 4 ++++ src/Security/Authentication/test/SecureDataFormatTests.cs | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/Security/Authentication/test/Microsoft.AspNetCore.Authentication.Test.csproj b/src/Security/Authentication/test/Microsoft.AspNetCore.Authentication.Test.csproj index fbff92fe9b..f575bfa0cf 100644 --- a/src/Security/Authentication/test/Microsoft.AspNetCore.Authentication.Test.csproj +++ b/src/Security/Authentication/test/Microsoft.AspNetCore.Authentication.Test.csproj @@ -29,6 +29,10 @@ + + + + diff --git a/src/Security/Authentication/test/SecureDataFormatTests.cs b/src/Security/Authentication/test/SecureDataFormatTests.cs index bda4b09fa7..121c26e47d 100644 --- a/src/Security/Authentication/test/SecureDataFormatTests.cs +++ b/src/Security/Authentication/test/SecureDataFormatTests.cs @@ -4,6 +4,7 @@ using System; using System.Text; using Microsoft.AspNetCore.DataProtection; +using Microsoft.AspNetCore.Testing.xunit; using Microsoft.Extensions.DependencyInjection; using Xunit; @@ -48,6 +49,7 @@ namespace Microsoft.AspNetCore.Authentication.DataHandler } [Fact] + [SkipOnHelix] public void UnprotectWithDifferentPurposeFails() { var provider = ServiceProvider.GetRequiredService();