Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix linting error in test
  • Loading branch information
mattcan authored Oct 27, 2017
commit a01a962943e8e7dd54a6ecb83a1eb62e2c87395e
3 changes: 2 additions & 1 deletion test/addons-napi/test_dataview/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ const buffer = new ArrayBuffer(128);
const template = Reflect.construct(DataView, [buffer]);

const theDataview = test_dataview.CreateDataView(template);
assert.ok(theDataview instanceof DataView, `Expect ${theDataview} to be a DataView`);
assert.ok(theDataview instanceof DataView,
`Expect ${theDataview} to be a DataView`);