Remove some ActiveIssueAttributes (dotnet/corefx#41163)
authorSantiago Fernandez Madero <safern@microsoft.com>
Wed, 18 Sep 2019 14:31:20 +0000 (07:31 -0700)
committerStephen Toub <stoub@microsoft.com>
Wed, 18 Sep 2019 14:31:20 +0000 (10:31 -0400)
Commit migrated from https://github.com/dotnet/corefx/commit/9f4fa8c6d1b581676f24af429bc64867cb623c78

src/libraries/System.Configuration.ConfigurationManager/tests/System/Configuration/ApplicationSettingsBaseTests.cs

index 9cb7a55..f3e9eca 100644 (file)
@@ -49,7 +49,6 @@ namespace System.ConfigurationTests
         [Theory]
         [InlineData(true)]
         [InlineData(false)]
-        [ActiveIssue("dotnet/corefx #18832", TargetFrameworkMonikers.NetFramework)]
         public void Context_SimpleSettings_InNotNull(bool isSynchronized)
         {
             SimpleSettings settings = isSynchronized
@@ -62,7 +61,6 @@ namespace System.ConfigurationTests
         [Theory]
         [InlineData(true)]
         [InlineData(false)]
-        [ActiveIssue("dotnet/corefx #18832", TargetFrameworkMonikers.NetFramework)]
         public void Providers_SimpleSettings_Empty(bool isSynchronized)
         {
             SimpleSettings settings = isSynchronized
@@ -76,7 +74,6 @@ namespace System.ConfigurationTests
         [Theory]
         [InlineData(true)]
         [InlineData(false)]
-        [ActiveIssue("dotnet/corefx #18832", TargetFrameworkMonikers.NetFramework)]
         public void GetSetStringProperty_SimpleSettings_Ok(bool isSynchronized)
         {
             SimpleSettings settings = isSynchronized
@@ -91,7 +88,6 @@ namespace System.ConfigurationTests
         [Theory]
         [InlineData(true)]
         [InlineData(false)]
-        [ActiveIssue("dotnet/corefx #18832", TargetFrameworkMonikers.NetFramework)]
         public void GetSetIntProperty_SimpleSettings_Ok(bool isSynchronized)
         {
             SimpleSettings settings = isSynchronized
@@ -106,7 +102,6 @@ namespace System.ConfigurationTests
         [ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoServer)),
             InlineData(true),
             InlineData(false)]
-        [ActiveIssue("dotnet/corefx #18832", TargetFrameworkMonikers.NetFramework)]
         [ActiveIssue("https://github.com/dotnet/corefx/issues/35668", TestPlatforms.AnyUnix)]
         public void Save_SimpleSettings_Ok(bool isSynchronized)
         {
@@ -149,7 +144,6 @@ namespace System.ConfigurationTests
         }
 
         [Fact]
-        [ActiveIssue("dotnet/corefx #18832", TargetFrameworkMonikers.NetFramework)]
         public void Reload_SimpleSettings_Ok()
         {
             var settings = new SimpleSettings
@@ -188,7 +182,6 @@ namespace System.ConfigurationTests
         }
 
         [Fact]
-        [ActiveIssue("dotnet/corefx #18832", TargetFrameworkMonikers.NetFramework)]
         public void SettingsProperty_SettingsWithAttributes_Ok()
         {
             SettingsWithAttributes settings = new SettingsWithAttributes();