Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Commit b98044e

Browse files
fix: remove tab identifiers
Signed-off-by: Carlos Feria <2582866+carlosthe19916@users.noreply.github.com>
1 parent 028de91 commit b98044e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/ui/dependencies/global.setup.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const uploadSboms = async (page: Page, files: string[]) => {
3636
);
3737

3838
await expect(
39-
page.locator("#upload-sbom-tab-content .pf-v6-c-expandable-section__toggle")
39+
page.locator(".pf-v6-c-expandable-section__toggle")
4040
).toContainText(`${files.length} of ${files.length} files uploaded`, {
4141
timeout: SETUP_TIMEOUT / 2,
4242
});
@@ -54,9 +54,7 @@ const uploadAdvisories = async (page: Page, files: string[]) => {
5454
);
5555

5656
await expect(
57-
page.locator(
58-
"#upload-advisory-tab-content .pf-v6-c-expandable-section__toggle"
59-
)
57+
page.locator(".pf-v6-c-expandable-section__toggle")
6058
).toContainText(`${files.length} of ${files.length} files uploaded`, {
6159
timeout: SETUP_TIMEOUT / 2,
6260
});

0 commit comments

Comments
 (0)