Skip to content

Commit 397a5e2

Browse files
Mike Wassermanlutien
authored andcommitted
Bug 1966215 [wpt PR 52509] - Summarizer API: Fix summarizeStreaming WPT,
Automatic update from web-platform-tests Summarizer API: Fix summarizeStreaming WPT Check the concatenated text stream, rather than the last chunk. Fixed: 417493972 Change-Id: Ia3fde37e011efff04a431e4ef61a3c4d2f3015ad Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6542867 Auto-Submit: Mike Wasserman <[email protected]> Commit-Queue: Mike Wasserman <[email protected]> Reviewed-by: Daseul Lee <[email protected]> Commit-Queue: Daseul Lee <[email protected]> Cr-Commit-Position: refs/heads/main@{#1459650} -- wpt-commits: f7e886ebf1bbd6d70af660bdd126fd3238f63274 wpt-pr: 52509 Differential Revision: https://phabricator.services.mozilla.com/D250157
1 parent 25b25bd commit 397a5e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/web-platform/tests/ai/summarizer/summarizer-summarize-streaming.tentative.https.window.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ promise_test(async t => {
1919
if (done) {
2020
break;
2121
}
22-
result = value;
22+
result += value;
2323
}
2424
assert_greater_than(result.length, 0);
2525
}, 'Summarizer.summarizeStreaming() returns ReadableStream with a non-empty text.');

0 commit comments

Comments
 (0)