Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2015-06-26 04:13:01 +0300
committerRebecca Turner <me@re-becca.org>2015-06-26 04:13:03 +0300
commit3501f2289816b6f4c30a03962ed179709211f2b5 (patch)
tree87b41d40ca441e94e52896b5a21ebfc0f4b280d4
parent0772c950998092e01f601766cf711c652f22a0c5 (diff)
src: Fix one last standard style issue
It showed up after standardization due to a rebase.
-rw-r--r--test/tap/noargs-install-config-save.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tap/noargs-install-config-save.js b/test/tap/noargs-install-config-save.js
index 30d13904e..7b13f3bdc 100644
--- a/test/tap/noargs-install-config-save.js
+++ b/test/tap/noargs-install-config-save.js
@@ -71,7 +71,7 @@ test('updates the package.json (adds dependencies) with an argument', function (
var child = createChild([npm, 'install', 'underscore'])
child.on('close', function () {
s.close()
- var text = JSON.stringify(fs.readFileSync(pkg + "/package.json", "utf8"))
+ var text = JSON.stringify(fs.readFileSync(pkg + '/package.json', 'utf8'))
t.notEqual(text.indexOf('"dependencies'), -1, 'dependencies exist in file')
})
})