Re-enable GenerateGuidForType exception tests (dotnet/corefx#34408)
authorStephen Toub <stoub@microsoft.com>
Thu, 10 Jan 2019 01:31:34 +0000 (20:31 -0500)
committerGitHub <noreply@github.com>
Thu, 10 Jan 2019 01:31:34 +0000 (20:31 -0500)
Commit migrated from https://github.com/dotnet/corefx/commit/f7b09b1af8318b457d55a6f14943a3fa36127960

src/libraries/System.Runtime.InteropServices/tests/System/Runtime/InteropServices/Marshal/GenerateGuidForTypeTests.cs

index a60edfc..009e86f 100644 (file)
@@ -79,14 +79,12 @@ namespace System.Runtime.InteropServices.Tests
         public class ClassWithGuidAttribute { }
 
         [Fact]
-        [ActiveIssue(30926, ~TargetFrameworkMonikers.NetFramework)]
         public void GenerateGuidForType_NullType_ThrowsArgumentNullException()
         {
             AssertExtensions.Throws<ArgumentNullException>("type", () => Marshal.GenerateGuidForType(null));
         }
 
         [Fact]
-        [ActiveIssue(30926, ~TargetFrameworkMonikers.NetFramework)]
         public void GenerateGuidForType_NotRuntimeType_ThrowsArgumentException()
         {
             AssemblyBuilder assemblyBuilder = AssemblyBuilder.DefineDynamicAssembly(new AssemblyName("Assembly"), AssemblyBuilderAccess.Run);