Skip to content

Commit 2040299

Browse files
committed
fix(h06): accept parquet_tokenized_stream (V7-G01 multi-shard label)
1 parent 93930b2 commit 2040299

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

vbgui/e2e/scenarios/60_long_run_ui.spec.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,10 @@ test("H06 @long-running: N=100 real-corpus walk through UI", async ({ page }) =>
8181
// Real-data path activated (not synthetic).
8282
const dataSource = await page.getByTestId(
8383
"run-result-extras-train-data_source").textContent();
84-
expect(dataSource?.trim()).toBe("parquet_tokenized");
84+
// V7-G01 added a multi-shard `parquet_tokenized_stream` label
85+
// alongside the single-shard `parquet_tokenized`; H06 accepts both.
86+
expect(["parquet_tokenized", "parquet_tokenized_stream"])
87+
.toContain(dataSource?.trim() ?? "");
8588

8689
await closeModal(page);
8790
});

0 commit comments

Comments
 (0)