From 9c03018a188bddb436b03d81b24e2e030d8289f7 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 2 Jun 2017 15:29:41 -0700 Subject: [PATCH] Cleanup unnecessary NGPV exclusion and dead test code --- NuGetPackageVerifier.json | 3 --- .../GlobbingAppTests.cs | 16 ---------------- 2 files changed, 19 deletions(-) diff --git a/NuGetPackageVerifier.json b/NuGetPackageVerifier.json index 34870e0f87..214ca77a9c 100644 --- a/NuGetPackageVerifier.json +++ b/NuGetPackageVerifier.json @@ -23,9 +23,6 @@ "exclusions":{ "BUILD_ITEMS_FRAMEWORK": { "*": "This is an MSBuild task intended to run through dotnet msbuild /t:Target independently of whether your project targets full framework or .net core." - }, - "THIRDPARTY_DEPENDENCY_NOT_REGISTERED": { - "*": "Temporary exception while waiting for Coherence-Signed to get a new version of NugetPackageVerifier." } } } diff --git a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/GlobbingAppTests.cs b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/GlobbingAppTests.cs index b516d671da..be3bcef66a 100644 --- a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/GlobbingAppTests.cs +++ b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/GlobbingAppTests.cs @@ -41,22 +41,6 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests Assert.Equal(2, types); } - [Fact(Skip = "Broken. See https://github.com/aspnet/DotNetTools/issues/212")] - public async Task AddCompiledFile() - { - await _app.StartWatcherAsync(); - - var types = await _app.GetCompiledAppDefinedTypes().TimeoutAfter(DefaultTimeout); - Assert.Equal(2, types); - - var fileToChange = Path.Combine(_app.SourceDirectory, "include", "Bar.cs"); - File.WriteAllText(fileToChange, "public class Bar {}"); - - await _app.HasRestarted(); - types = await _app.GetCompiledAppDefinedTypes().TimeoutAfter(DefaultTimeout); - Assert.Equal(3, types); - } - [Fact] public async Task DeleteCompiledFile() {