Skip to content

Commit f59c0e0

Browse files
committed
Use longer timeout in test
1 parent 17867ee commit f59c0e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ModelContextProtocol.Tests/Server/DistributedCacheEventStreamStoreTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,7 @@ public async Task ReadEventsAsync_InStreamingMode_CompletesWhenStreamIsDisposed(
956956

957957
// Assert - The read should complete gracefully within timeout
958958
using var timeoutCts = CancellationTokenSource.CreateLinkedTokenSource(CancellationToken);
959-
timeoutCts.CancelAfter(TimeSpan.FromSeconds(2));
959+
timeoutCts.CancelAfter(TimeSpan.FromSeconds(10));
960960
await readTask.WaitAsync(timeoutCts.Token);
961961
}
962962

0 commit comments

Comments
 (0)