Skip to content

Commit

Permalink
Fix Lint error (#25944)
Browse files Browse the repository at this point in the history
  • Loading branch information
frivoal authored Oct 2, 2020
1 parent c7ae976 commit c96b7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webrtc/RTCDataChannel-binaryType.window.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ for (const binaryType of invalidBinaryTypes) {
t.add_cleanup(() => pc.close());
const dc = pc.createDataChannel('test-binary-type');

assert_throws('SyntaxError', () => {
assert_throws_dom('SyntaxError', () => {
dc.binaryType = binaryType;
});
}, `Setting invalid binaryType '${binaryType}' should throw SyntaxError`);
Expand Down

0 comments on commit c96b7e7

Please sign in to comment.