File tree Expand file tree Collapse file tree
SharpClaw.Code.IntegrationTests/Runtime
SharpClaw.Code.UnitTests/Acp Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ private static async Task WaitForActiveTurnAsync(
201201 string workspacePath ,
202202 CancellationToken cancellationToken )
203203 {
204- for ( var attempt = 0 ; attempt < 100 ; attempt ++ )
204+ for ( var attempt = 0 ; attempt < 400 ; attempt ++ )
205205 {
206206 var latestSession = await runtime . GetLatestSessionAsync ( workspacePath , cancellationToken ) . ConfigureAwait ( false ) ;
207207 if ( ! string . IsNullOrWhiteSpace ( latestSession ? . ActiveTurnId ) )
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public async Task RunAsync_should_flow_model_and_editor_context_into_prompt_requ
7777 runtime . LastRequest . Metadata ! [ "model" ] . Should ( ) . Be ( "ollama/qwen2.5-coder" ) ;
7878 runtime . LastRequest . IsInteractive . Should ( ) . BeTrue ( ) ;
7979 editorBuffer . LastPublished . Should ( ) . NotBeNull ( ) ;
80- editorBuffer . LastPublished ! . CurrentFilePath . Should ( ) . Be ( NormalizePath ( "/tmp/workspace/src/App.cs" ) ) ;
80+ editorBuffer . LastPublished ! . CurrentFilePath . Should ( ) . Be ( "/tmp/workspace/src/App.cs" ) ;
8181 }
8282
8383 [ Fact ]
You can’t perform that action at this time.
0 commit comments