@@ -131,7 +131,8 @@ public async Task Should_Return_Error_When_No_DirectoryOrFile_And_Not_Piping_Std
131131 var result = await new CsharpierProcess ( ) . ExecuteAsync ( ) ;
132132
133133 result . ExitCode . Should ( ) . Be ( 1 ) ;
134- result . ErrorOutput
134+ result
135+ . ErrorOutput
135136 . Should ( )
136137 . Contain ( "directoryOrFile is required when not piping stdin to CSharpier" ) ;
137138 }
@@ -170,7 +171,8 @@ public async Task Should_Print_NotFound()
170171 var result = await new CsharpierProcess ( ) . WithArguments ( "/BasicFile.cs" ) . ExecuteAsync ( ) ;
171172
172173 result . Output . Should ( ) . BeEmpty ( ) ;
173- result . ErrorOutput
174+ result
175+ . ErrorOutput
174176 . Should ( )
175177 . StartWith ( "There was no file or directory found at /BasicFile.cs" ) ;
176178 result . ExitCode . Should ( ) . Be ( 1 ) ;
@@ -199,7 +201,8 @@ public async Task With_Check_Should_Write_Unformatted_File()
199201 . WithArguments ( "CheckUnformatted.cs --check" )
200202 . ExecuteAsync ( ) ;
201203
202- result . ErrorOutput
204+ result
205+ . ErrorOutput
203206 . Replace ( "\\ " , "/" )
204207 . Should ( )
205208 . StartWith ( "Error ./CheckUnformatted.cs - Was not formatted." ) ;
@@ -242,7 +245,8 @@ public async Task Should_Write_Error_With_Multiple_Piped_Files(string input, str
242245 . WithPipedInput ( $ "{ input } { '\u0003 ' } { invalidFile } { '\u0003 ' } ")
243246 . ExecuteAsync ( ) ;
244247
245- result . ErrorOutput
248+ result
249+ . ErrorOutput
246250 . Should ( )
247251 . Be (
248252 $ "Error { output } - Failed to compile so was not formatted.{ Environment . NewLine } (1,26): error CS1513: }} expected{ Environment . NewLine } "
@@ -341,7 +345,8 @@ await this.WriteFileAsync(
341345
342346 var result = await new CsharpierProcess ( ) . WithArguments ( "." ) . ExecuteAsync ( ) ;
343347
344- result . ErrorOutput
348+ result
349+ . ErrorOutput
345350 . Should ( )
346351 . Contain ( "uses version 99 of CSharpier.MsBuild which is a mismatch with version" ) ;
347352 result . ExitCode . Should ( ) . Be ( 1 ) ;
@@ -504,7 +509,8 @@ public CsharpierProcess()
504509 {
505510 var path = Path . Combine ( Directory . GetCurrentDirectory ( ) , "dotnet-csharpier.dll" ) ;
506511
507- this . command = CliWrap . Cli
512+ this . command = CliWrap
513+ . Cli
508514 . Wrap ( "dotnet" )
509515 . WithArguments ( path )
510516 . WithWorkingDirectory ( testFileDirectory )
0 commit comments