Skip to content

Commit d6ec763

Browse files
Fix unit test for Base91 operations
Update chef.help() test to expect 15 results instead of 13 due to the addition of Base91 operations (ToBase91 and FromBase91) which are now included when searching for 'base 64'.
1 parent aa4bb2b commit d6ec763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/node/tests/nodeApi.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ TestRegister.addApiTests([
136136

137137
it("chef.help: returns multiple results", () => {
138138
const result = chef.help("base 64");
139-
assert.strictEqual(result.length, 13);
139+
assert.strictEqual(result.length, 15);
140140
}),
141141

142142
it("chef.help: looks in description for matches too", () => {

0 commit comments

Comments
 (0)