This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 8bb1cc0 Unused
8bb1cc0 is described below
commit 8bb1cc01a9ca27743dcce3973fd35de4eb893d29
Author: Sebb <[email protected]>
AuthorDate: Sun Jun 28 22:54:00 2020 +0100
Unused
---
lib/spec/lib/svn_spec.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/spec/lib/svn_spec.rb b/lib/spec/lib/svn_spec.rb
index f46df50..2e8ad4a 100644
--- a/lib/spec/lib/svn_spec.rb
+++ b/lib/spec/lib/svn_spec.rb
@@ -309,7 +309,7 @@ describe ASF::SVN do
it "_svn_build_cmd('help', 'path', {user: 'whimsy', password: 'pass})
should include username" do
cmd, stdin = ASF::SVN._svn_build_cmd('help', 'path', {user: 'whimsy',
password: 'pass'})
exp = ["svn", "help", "--non-interactive", ["--username", "whimsy",
"--no-auth-cache"], "--", "path"]
- if res = ASF::SVN.passwordStdinOK?
+ if ASF::SVN.passwordStdinOK?
expect(stdin).to eq('pass')
expect(cmd-exp).to eq([["--password-from-stdin"]])
else