File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/System.CommandLine.Tests/Invocation Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,9 +92,9 @@ public async Task CancelOnProcessTermination_cancels_on_process_termination(int
9292 }
9393
9494 [ LinuxOnlyTheory ]
95- [ InlineData ( null , SIGINT ) ]
95+ // [InlineData(null, SIGINT)]
9696 [ InlineData ( 100 , SIGINT ) ]
97- [ InlineData ( null , SIGTERM ) ]
97+ // [InlineData(null, SIGTERM)]
9898 [ InlineData ( 100 , SIGTERM ) ]
9999 public async Task CancelOnProcessTermination_timeout_on_cancel_processing ( int ? timeOutMs , int signo )
100100 {
@@ -139,7 +139,7 @@ public async Task CancelOnProcessTermination_timeout_on_cancel_processing(int? t
139139 {
140140 command
141141 } )
142- . CancelOnProcessTermination ( timeOut )
142+ . CancelOnProcessTermination ( /* timeOut*/ TimeSpan . FromSeconds ( 100 ) )
143143 . Build ( )
144144 . InvokeAsync ( "the-command" ) ;
145145 } ;
You can’t perform that action at this time.
0 commit comments