From 1fd33f62f4e095aa1fd8837c8195a1037fff9323 Mon Sep 17 00:00:00 2001 From: Ryan Brandenburg Date: Tue, 13 Mar 2018 14:57:07 -0700 Subject: [PATCH] Skip flaky tests --- test/Service.Core.Test/JwtIdTokenIssuerTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Service.Core.Test/JwtIdTokenIssuerTest.cs b/test/Service.Core.Test/JwtIdTokenIssuerTest.cs index 20e4bfd9e7..8fc7314d0c 100644 --- a/test/Service.Core.Test/JwtIdTokenIssuerTest.cs +++ b/test/Service.Core.Test/JwtIdTokenIssuerTest.cs @@ -63,7 +63,7 @@ namespace Microsoft.AspNetCore.Identity.Service Assert.Equal($"Missing '{IdentityServiceClaimTypes.ClientId}' claim from the application.", exception.Message); } - [Fact] + [Fact(Skip = "https://github.com/aspnet/Identity/issues/1630")] public async Task JwtIdTokenIssuer_SignsAccessToken() { // Arrange @@ -113,7 +113,7 @@ namespace Microsoft.AspNetCore.Identity.Service Assert.Equal(expectedDateTime.UtcDateTime, jwtToken.ValidFrom); } - [Theory(Skip="https://github.com/aspnet/Identity/issues/1630")] + [Theory(Skip = "https://github.com/aspnet/Identity/issues/1630")] [InlineData(null, null, null)] [InlineData("nonce", null, null)] [InlineData("nonce", "code", null)]