diff --git a/src/libraries/System.Text.RegularExpressions/tests/Regex.Match.Tests.cs b/src/libraries/System.Text.RegularExpressions/tests/Regex.Match.Tests.cs index 5da3f4fcaa3318..2314d778c8c5d9 100644 --- a/src/libraries/System.Text.RegularExpressions/tests/Regex.Match.Tests.cs +++ b/src/libraries/System.Text.RegularExpressions/tests/Regex.Match.Tests.cs @@ -794,9 +794,7 @@ public void Match_DefaultTimeout_Throws(RegexOptions options) // TODO: Figure out what to do with default timeouts for source generated regexes [Theory] [InlineData(RegexOptions.None)] - [InlineData(RegexOptions.None | RegexHelpers.RegexOptionDebug)] [InlineData(RegexOptions.Compiled)] - [InlineData(RegexOptions.Compiled | RegexHelpers.RegexOptionDebug)] public void Match_CachedPattern_NewTimeoutApplies(RegexOptions options) { const string PatternLeadingToLotsOfBacktracking = @"^(\w+\s?)*$";