[Pkg-javascript-commits] [node-shell-quote] 78/137: updated set env test, already passes
Bastien Roucariès
rouca at moszumanska.debian.org
Fri Aug 25 19:19:41 UTC 2017
This is an automated email from the git hooks/post-receive script.
rouca pushed a commit to branch master
in repository node-shell-quote.
commit 7d5636bec5e76ff542712e07643b09c597d20b21
Author: James Halliday <mail at substack.net>
Date: Mon Jun 24 04:17:52 2013 -0700
updated set env test, already passes
---
test/set.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/test/set.js b/test/set.js
index 64771f7..e30509b 100644
--- a/test/set.js
+++ b/test/set.js
@@ -4,15 +4,15 @@ var parse = require('../').parse;
test('set env vars', function (t) {
t.same(
parse('ABC=444 x y z'),
- [ { key: 'X', value: '444' }, 'x', 'y', 'z' ]
+ [ 'ABC=444', 'x', 'y', 'z' ]
);
t.same(
parse('ABC=3\\ 4\\ 5 x y z'),
- [ { key: 'X', value: '3 4 5' }, 'x', 'y', 'z' ]
+ [ 'ABC=3 4 5', 'x', 'y', 'z' ]
);
t.same(
parse('X="7 8 9" printx'),
- [ { key: 'X', value: '7 8 9' }, 'printx' ]
+ [ 'X=7 8 9', 'printx' ]
);
t.end();
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-shell-quote.git
More information about the Pkg-javascript-commits
mailing list