Skip to content

Commit

Permalink
release: v1.52.8 wiht ci flow fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
zrwusa committed Oct 30, 2024
1 parent 9e62968 commit 5992ae5
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 31 deletions.
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@
"@typescript-eslint/eslint-plugin": "^8.12.1",
"@typescript-eslint/parser": "^8.12.1",
"auto-changelog": "^2.5.0",
"avl-tree-typed": "^1.52.6",
"avl-tree-typed": "^1.52.8",
"benchmark": "^2.1.4",
"binary-tree-typed": "^1.52.6",
"bst-typed": "^1.52.6",
"data-structure-typed": "^1.52.7",
"binary-tree-typed": "^1.52.8",
"bst-typed": "^1.52.8",
"data-structure-typed": "^1.52.8",
"dependency-cruiser": "^16.5.0",
"doctoc": "^2.2.1",
"eslint": "^9.13.0",
Expand All @@ -81,7 +81,7 @@
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"fast-glob": "^3.3.2",
"heap-typed": "^1.52.6",
"heap-typed": "^1.52.8",
"istanbul-badges-readme": "^1.9.0",
"jest": "^29.7.0",
"js-sdsl": "^4.4.2",
Expand Down
4 changes: 2 additions & 2 deletions test/integration/bst.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ describe('Individual package BST operations test', () => {
const nodeId10 = bst.getNode(10);
expect(nodeId10?.key).toBe(10);

const nodeVal9 = bst.getNode(9, node => node.value);
const nodeVal9 = bst.getNode(node => node.value === 9);
expect(nodeVal9?.key).toBe(undefined);

const nodeVal11 = bst.getNode(11, node => node.value);
const nodeVal11 = bst.getNode(node => node.value === 11);
expect(nodeVal11?.key).toBe(11);

const leftMost = bst.getLeftMost(node => node);
Expand Down

0 comments on commit 5992ae5

Please sign in to comment.