Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Setch <[email protected]>
  • Loading branch information
setchy committed Apr 14, 2024
1 parent 5e42eb9 commit 9ea2669
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2221,8 +2221,8 @@ test("parsePkgLock v3", async () => {
projectName: "cdxgen",
});
deps = parsedList.pkgList;
expect(deps.length).toEqual(1164);
expect(parsedList.dependenciesList.length).toEqual(1164);
expect(deps.length).toEqual(1071);
expect(parsedList.dependenciesList.length).toEqual(1071);
});

test("parseBowerJson", async () => {
Expand Down

0 comments on commit 9ea2669

Please sign in to comment.