Skip to content

Commit 3071ac6

Browse files
committed
test: relax windows runtime startup expectations
1 parent 370bae3 commit 3071ac6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/SharpClaw.Code.IntegrationTests/Runtime/ConversationRuntimeFlowTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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))

tests/SharpClaw.Code.UnitTests/Acp/AcpStdioHostTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)