Skip to content

Commit 7f9dab9

Browse files
Fix test under JIT stress (#110538)
1 parent a5af0ab commit 7f9dab9

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/libraries/Common/tests/System/Reflection/InvokeInterpretedTests.cs

-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public static void VerifyInvokeIsUsingInterpreter_Method()
1616
Exception exInner = ex.InnerException;
1717

1818
Assert.Contains("Here", exInner.ToString());
19-
Assert.Contains("InterpretedInvoke_Method", exInner.ToString());
2019
Assert.DoesNotContain("InvokeStub_TestClassThatThrows", exInner.ToString());
2120
}
2221

@@ -29,7 +28,6 @@ public static void VerifyInvokeIsUsingInterpreter_Constructor()
2928
Exception exInner = ex.InnerException;
3029

3130
Assert.Contains("Here", exInner.ToString());
32-
Assert.Contains("InterpretedInvoke_Constructor", exInner.ToString());
3331
Assert.DoesNotContain("InvokeStub_TestClassThatThrows", exInner.ToString());
3432
}
3533

0 commit comments

Comments
 (0)