Skip to content

Commit 97c0978

Browse files
committed
Fix missed assertion in PackageDependencyProvider tests
1 parent e663b62 commit 97c0978

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration-tests/ui/PackageDependencyProvider.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ suite("PackageDependencyProvider Test Suite", function () {
6363

6464
const dep = items.find(n => n.name === "defaultpackage") as PackageNode;
6565
expect(dep).to.not.be.undefined;
66-
expect(dep?.location).to.equal(testAssetPath("defaultPackage"));
66+
assertPathsEqual(dep?.location, testAssetPath("defaultPackage"));
6767
assertPathsEqual(dep?.path, testAssetPath("defaultPackage"));
6868
});
6969

0 commit comments

Comments
 (0)