diff options
author | Brendan Ashworth <brendan.ashworth@me.com> | 2015-02-21 18:47:04 -0800 |
---|---|---|
committer | Chris Dickinson <christopher.s.dickinson@gmail.com> | 2015-02-22 19:34:17 -0800 |
commit | 0df54303c12953f1a6a51b1b08377b7d87449008 (patch) | |
tree | 5937695a21b657910f2dcea33879b027ab76317c /test/parallel/test-signal-safety.js | |
parent | b9686233fc0be679d7ba1262b611711629ee334e (diff) | |
download | node-new-0df54303c12953f1a6a51b1b08377b7d87449008.tar.gz |
test: common.js -> common
This commit changes many test styles to change all references
from require('./common.js'); to require('./common');.
The latter is much more common, with the former only being used in 50
tests. It is just a stylistic change, and it seems that `common.js` was
introduced by a rogue test and copied and pasted into the rest.
Semver: patch
PR-URL: https://github.com/iojs/io.js/pull/917
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'test/parallel/test-signal-safety.js')
-rw-r--r-- | test/parallel/test-signal-safety.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-signal-safety.js b/test/parallel/test-signal-safety.js index 4707b634da..b037232a6b 100644 --- a/test/parallel/test-signal-safety.js +++ b/test/parallel/test-signal-safety.js @@ -1,4 +1,4 @@ -var common = require('../common.js'); +var common = require('../common'); var assert = require('assert'); var Signal = process.binding('signal_wrap').Signal; |