Skip to content

Commit

Permalink
re-order the imports of buildin modules in alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentcn committed Jul 18, 2017
1 parent 707e50a commit 8a08a43
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/async-hooks/test-tlswrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');

const path = require('path');
const assert = require('assert');
const fs = require('fs');
const path = require('path');
const tls = require('tls');

const tick = require('./tick');
const initHooks = require('./init-hooks');
const fs = require('fs');
const { checkInvocations } = require('./hook-checks');
const tls = require('tls');

const hooks = initHooks();
hooks.enable();
Expand Down

0 comments on commit 8a08a43

Please sign in to comment.