Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion test/parallel/test-event-capture-rejections.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function globalSetting() {
}

// We need to be able to configure this for streams, as we would
// like to call destro(err) there.
// like to call destroy(err) there.
function configurable() {
const ee = new EventEmitter({ captureRejections: true });
const _err = new Error('kaboom');
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-stream-writable-samecb-singletick.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const async_hooks = require('async_hooks');
const checkTickCreated = common.mustCall();

async_hooks.createHook({
init(id, type, triggerId, resoure) {
init(id, type, triggerId, resource) {
if (type === 'TickObject') checkTickCreated();
}
}).enable();
Expand Down