Skip to content

Commit

Permalink
Remove one more unnecessary arg
Browse files Browse the repository at this point in the history
  • Loading branch information
lhstrh committed Jun 28, 2023
1 parent 0199dfe commit 590f4c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __tests__/dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ describe("Manually constructed simple precedence graphs", () => {
});

describe("Test for corner cases", () => {
var graph = new SortablePrecedenceGraph<Sortable<Priority>>(CNode<Priority>);
var graph = new SortablePrecedenceGraph<Sortable<Priority>>();
const node: Sortable<Priority> = new CNode<Priority>();
graph.addEdge(new CNode<Priority>(), node);
});
Expand Down

0 comments on commit 590f4c5

Please sign in to comment.