Skip to content

Commit ddce451

Browse files
authored
Fix pipeline e2e tests (#1667)
## Changes <!-- Summary of your changes that are easy to understand --> ## Tests <!-- How is this tested? -->
1 parent dc2065b commit ddce451

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/databricks-vscode/src/test/e2e/deploy_and_run_pipeline.e2e.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,17 @@ describe("Deploy and run pipeline", async function () {
108108
}
109109
assert(labels.includes("Start Time"), "Start Time label not found");
110110
assert(
111-
labels.includes("Dataset 'test_view' defined as VIEW."),
111+
labels.includes("Dataset 'test_view' defined as VIEW.") ||
112+
labels.includes("Dataset `test_view` defined as VIEW."),
112113
"test_view item not found"
113114
);
114115
assert(
115116
labels.includes(
116117
"Dataset 'test_table' defined as MATERIALIZED_VIEW."
117-
),
118+
) ||
119+
labels.includes(
120+
"Dataset `test_table` defined as MATERIALIZED_VIEW."
121+
),
118122
"test_table item not found"
119123
);
120124
});

0 commit comments

Comments
 (0)