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
parent 56854583de
commit 15b21b3e2d

View file

@ -213,16 +213,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