Skip to content

Commit 2aacea4

Browse files
author
Dave Bartolomeo
committed
Fix test expectation
1 parent 2ccd99f commit 2aacea4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

extensions/ql-vscode/test/vscode-tests/cli-integration/variant-analysis/variant-analysis-manager.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -364,9 +364,9 @@ describe("Variant Analysis Manager", () => {
364364

365365
// Assume the first dependency to check is the core library.
366366
if (dependenciesToCheck.length > 0) {
367-
expect(qlpackContents.dependencies?.[dependenciesToCheck[0]]).toEqual(
368-
"*",
369-
);
367+
expect(
368+
qlpackContents.dependencies?.[dependenciesToCheck[0]],
369+
).not.toEqual("${workspace}");
370370
}
371371
const qlpackLockContents = load(
372372
packFS.fileContents("codeql-pack.lock.yml").toString("utf-8"),

0 commit comments

Comments
 (0)