Skip to content

Commit

Permalink
missed a few
Browse files Browse the repository at this point in the history
  • Loading branch information
dancastillo committed Nov 5, 2024
1 parent 315b2a0 commit 757cee8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bench.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const bench = require('fastbench')
const SonicBoom = require('sonic-boom')
const ThreadStream = require('.')
const Console = require('console').Console
const Console = require('node:console').Console
const fs = require('node:fs')
const { join } = require('node:path')

Expand Down
2 changes: 1 addition & 1 deletion test/base.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const { join } = require('node:path')
const { readFile } = require('node:fs')
const { file } = require('./helper')
const ThreadStream = require('..')
const { MessageChannel } = require('worker_threads')
const { MessageChannel } = require('node:worker_threads')
const { once } = require('node:events')

test('base sync=true', function (t) {
Expand Down
2 changes: 1 addition & 1 deletion test/pkg/pkg.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const { test } = require('tap')
const config = require('./pkg.config.json')
const { promisify } = require('node:util')
const { unlink } = require('fs/promises')
const { unlink } = require('node:fs/promises')
const { join } = require('node:path')
const { platform } = require('node:process')
const exec = promisify(require('node:child_process').exec)
Expand Down

0 comments on commit 757cee8

Please sign in to comment.