Skip to content

Commit

Permalink
[WebAudio] Fix typo in different-contexts.html
Browse files Browse the repository at this point in the history
  • Loading branch information
tcl3 authored and padenot committed Jan 14, 2025
1 parent 706faf5 commit 9726c46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
() => {g2 = new GainNode(c2)}, 'Test 4: g2 = new GainNode(c2)')
.notThrow();
should(
() => {g2.disconnect(g1.gain)}, 'Test 4: g2.connect(g1.gain)')
() => {g2.disconnect(g1.gain)}, 'Test 4: g2.disconnect(g1.gain)')
.throw(DOMException, 'InvalidAccessError');
task.done();
});
Expand Down

0 comments on commit 9726c46

Please sign in to comment.