Skip to content

Commit 3bfeeec

Browse files
authored
spelling: zapp (#377)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
1 parent c5e27b9 commit 3bfeeec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/variable/define-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ it("variable.define correctly detects reachability for unreachable cycles", asyn
118118
const bar = module.define("bar", ["baz"], baz => `bar-${baz}`);
119119
const baz = module.define("baz", ["quux"], quux => `baz-${quux}`);
120120
const quux = module.define("quux", ["zapp"], function*(zapp) { try { while (true) yield `quux-${zapp}`; } finally { returned = true; }});
121-
const zapp = module.define("zapp", ["bar"], bar => `zaap-${bar}`);
121+
const zapp = module.define("zapp", ["bar"], bar => `zapp-${bar}`);
122122
await runtime._compute();
123123
assert.strictEqual(bar._reachable, false);
124124
assert.strictEqual(baz._reachable, false);

0 commit comments

Comments
 (0)