type fixes

folders
Rick Carlino 2019-12-12 17:01:41 -06:00
parent c145fd3de9
commit 70118937fa
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ describe("climb()", () => {
it("halts a tree climb", () => {
let count = 0;
climb(TREE, (node, halt) => {
climb(TREE, (_node, halt) => {
count += 1;
if (count == 3) { halt(); }
});