Add parens to the pattern to see if it fixes things

This commit is contained in:
Larry Ewing 2023-10-11 12:02:22 -05:00 committed by Marc Paine
parent 9fa4d23711
commit d77c79b49b

View file

@ -202,16 +202,16 @@ namespace EndToEnd.Tests
string expectedOutput = string expectedOutput =
@"[\-\s]+ @"[\-\s]+
[\w \.]+webapp,razor\s+\[C#\][\w\ \/]+ [\w \.\(\)]+webapp,razor\s+\[C#\][\w\ \/]+
[\w \.]+classlib\s+\[C#\],F#,VB[\w\ \/]+ [\w \.\(\)]+classlib\s+\[C#\],F#,VB[\w\ \/]+
[\w \.]+console\s+\[C#\],F#,VB[\w\ \/]+ [\w \.\(\)]+console\s+\[C#\],F#,VB[\w\ \/]+
"; ";
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{ {
expectedOutput += expectedOutput +=
@"[\w \.]+winforms\s+\[C#\],VB[\w\ \/]+ @"[\w \.\(\)]+winforms\s+\[C#\],VB[\w\ \/]+
[\w \.]+\wpf\s+\[C#\],VB[\w\ \/]+ [\w \.\(\)]+\wpf\s+\[C#\],VB[\w\ \/]+
"; ";
} }
//list should end with new line //list should end with new line