Skip to content
This repository has been archived by the owner on Oct 16, 2021. It is now read-only.

Fixed imports to make test-process-kill-null.js test work on zOS #126

Open
wants to merge 1 commit into
base: v6.x.zos
Choose a base branch
from
Open
Changes from all commits
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
5 changes: 2 additions & 3 deletions test/parallel/test-process-kill-null.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
'use strict';
const { mustCall } = require('../common');
const { mustCall, spawnCat } = require('../common');
const assert = require('assert');
const { spawn } = require('child_process');

const cat = common.spawnCat();
const cat = spawnCat();

assert.ok(process.kill(cat.pid, 0));

Expand Down