Skip to content

Commit 483fc8c

Browse files
committed
fix linting
1 parent 1cd3dce commit 483fc8c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tests/unit-global/es.data-view.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ QUnit.test('DataView', assert => {
3434
assert.throws(() => new DataView(new ArrayBuffer(8), 0, -1), RangeError, 'negative byteLength throws RangeError');
3535
// Android ~ 4.0
3636
assert.throws(() => DataView(1), TypeError, 'throws without `new`');
37-
3837
} else {
3938
// FF bug - TypeError instead of RangeError
4039
assert.throws(() => new DataView(new ArrayBuffer(8), -1), 'If offset < 0, throw a RangeError exception');

0 commit comments

Comments
 (0)