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
Next Next commit
Unwrapped redundant mustCall(...)
  • Loading branch information
Miles Elam committed Feb 12, 2018
commit 1eee6789758e1f6f89b4dcc1e4c582a2773ab962
4 changes: 2 additions & 2 deletions test/parallel/test-http-information-processing.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
'use strict';
const common = require('../common');
require('../common');
const assert = require('assert');
const http = require('http');
const Countdown = require('../common/countdown');

const test_res_body = 'other stuff!\n';
const countdown = new Countdown(3, common.mustCall(() => server.close()));
const countdown = new Countdown(3, () => server.close());

const server = http.createServer((req, res) => {
console.error('Server sending informational message #1...');
Expand Down