This commit is contained in:
Dave Bartolomeo 2024-01-11 18:58:44 -05:00
Родитель 2ccd99fc5b
Коммит 2aacea4176
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -364,9 +364,9 @@ describe("Variant Analysis Manager", () => {
// Assume the first dependency to check is the core library.
if (dependenciesToCheck.length > 0) {
expect(qlpackContents.dependencies?.[dependenciesToCheck[0]]).toEqual(
"*",
);
expect(
qlpackContents.dependencies?.[dependenciesToCheck[0]],
).not.toEqual("${workspace}");
}
const qlpackLockContents = load(
packFS.fileContents("codeql-pack.lock.yml").toString("utf-8"),