Skip to content

Commit

Permalink
update tests after marge from Ofer
Browse files Browse the repository at this point in the history
  • Loading branch information
davemckenna01 committed Oct 5, 2013
1 parent de1c088 commit f4610c4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/shync.js
Expand Up @@ -183,6 +183,7 @@ suite('Shync', function(){
var sshParams = [];
sshParams.push('-oUserKnownHostsFile=/dev/null');
sshParams.push('-oStrictHostKeyChecking=no');
sshParams.push('-oNumberOfPasswordPrompts=0');
sshParams.push('-i' + opts.keyLoc);
sshParams.push('-l' + opts.user);
sshParams.push(opts.domain);
Expand All @@ -205,6 +206,7 @@ suite('Shync', function(){
ssh._runCmd(opts, 'date');

var sshParams = [];
sshParams.push('-oNumberOfPasswordPrompts=0');
sshParams.push('-i' + opts.keyLoc);
sshParams.push('-l' + opts.user);
sshParams.push(opts.domain);
Expand All @@ -225,6 +227,7 @@ suite('Shync', function(){
ssh._runCmd(opts, ['/foo/bar', '/bar/baz']);

var scpParams = [];
scpParams.push('-oNumberOfPasswordPrompts=0');
scpParams.push('-i' + opts.keyLoc);
scpParams.push('/foo/bar');
scpParams.push(opts.user+'@'+opts.domain+':'+'/bar/baz');
Expand Down

0 comments on commit f4610c4

Please sign in to comment.