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
add common.mustCall
  • Loading branch information
mafintosh committed Aug 30, 2018
commit 8376f460c53cf3733728821bf4e3363105277d48
4 changes: 2 additions & 2 deletions test/parallel/test-gc-tls-external-memory.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const server = net.createServer(function(socket) {
socket.write(yolo);
});

server.listen(0, function() {
server.listen(0, common.mustCall(function() {
const { port } = server.address();
let runs = 0;
connect();
Expand All @@ -32,4 +32,4 @@ server.listen(0, function() {
else
server.close();
}
});
}));