fix: flaky test 6 (#8175)

This commit is contained in:
jif-oai
2025-12-17 11:59:13 +00:00
committed by GitHub
parent 813bdb9010
commit 2bf57674d6
2 changed files with 15 additions and 18 deletions

View File

@@ -398,8 +398,8 @@ async fn shell_tools_start_before_response_completed_when_stream_delayed() -> an
for timestamp in timestamps {
assert!(
timestamp < completed_at,
"timestamp {timestamp} should be before completed {completed_at}"
timestamp <= completed_at,
"timestamp {timestamp} should be before or equal to completed {completed_at}"
);
}