You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2022/05/18 22:23:34 UTC

[whimsy] branch master updated: Fix failing test

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 73485a8b Fix failing test
73485a8b is described below

commit 73485a8b2722bcb9a154510dcc8d041145792c7d
Author: Sebb <se...@apache.org>
AuthorDate: Wed May 18 23:23:29 2022 +0100

    Fix failing test
---
 lib/spec/lib/svn_wunderbar_spec.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/spec/lib/svn_wunderbar_spec.rb b/lib/spec/lib/svn_wunderbar_spec.rb
index a9075439..1f4a33d0 100644
--- a/lib/spec/lib/svn_wunderbar_spec.rb
+++ b/lib/spec/lib/svn_wunderbar_spec.rb
@@ -99,10 +99,10 @@ describe "ASF::SVN.svn_" do
 
   it "auth: should override env: and user:/password:" do
     rc1, out1 = _json do |_|
-      ASF::SVN.svn_('help', 'help', _, {auth: [['a','b']], env: ENV_.new('c','d'), user: 'user', password: 'pass', verbose: true, dryrun: true})
+      ASF::SVN.svn_('help', 'help', _, {auth: [['--username', 'a', '--password', 'b']], env: ENV_.new('c','d'), user: 'user', password: 'pass', verbose: true, dryrun: true})
     end
     expect(rc1).to eq(0)
-    exp = [["svn", "help", [["a", "b"]], "--no-auth-cache", "--non-interactive", "--", "help"], {}]
+    exp = [["svn", "help", "--non-interactive", "--", "help"], {}]
     act = out1['transcript'][1]
     expect(act).to eq(exp.inspect)
   end