Skip to content

Commit

Permalink
refactor: move node up one level
Browse files Browse the repository at this point in the history
  • Loading branch information
ronag committed Sep 12, 2020
1 parent b19eee6 commit c734ed8
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/core/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const { URL } = require('url')
const net = require('net')
const tls = require('tls')
const HTTPParser = require('./node/http-parser')
const HTTPParser = require('../node/http-parser')
const EventEmitter = require('events')
const assert = require('assert')
const util = require('./util')
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/pool.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const {
InvalidArgumentError,
ClientDestroyedError
} = require('./core/errors')
const FixedQueue = require('./core/node/fixed-queue')
const FixedQueue = require('./node/fixed-queue')

const kClients = Symbol('clients')
const kQueue = Symbol('queue')
Expand Down
2 changes: 1 addition & 1 deletion test/fixed-queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const { test } = require('tap')

const FixedQueue = require('../lib/core/node/fixed-queue')
const FixedQueue = require('../lib/node/fixed-queue')

test('fixed queue 1', (t) => {
t.plan(5)
Expand Down

0 comments on commit c734ed8

Please # to comment.