You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2018/07/13 11:57:06 UTC

svn commit: r1835821 - /subversion/trunk/subversion/tests/cmdline/shelf_tests.py

Author: julianfoad
Date: Fri Jul 13 11:57:06 2018
New Revision: 1835821

URL: http://svn.apache.org/viewvc?rev=1835821&view=rev
Log:
Fix shelf_tests.py 31 on Windows: expect platform-specific slash.

* subversion/tests/cmdline/shelf_tests.py
  (shelf_diff_simple): Expect native slashes in summary diff output.

Modified:
    subversion/trunk/subversion/tests/cmdline/shelf_tests.py

Modified: subversion/trunk/subversion/tests/cmdline/shelf_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/shelf_tests.py?rev=1835821&r1=1835820&r2=1835821&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/shelf_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/shelf_tests.py Fri Jul 13 11:57:06 2018
@@ -920,7 +920,7 @@ def shelf_diff_simple(sbox):
                                      'shelf-diff', 'foo')
 
   # basic summary diff
-  expected_output = [ 'MM      A/mu\n' ]
+  expected_output = [ 'MM      ' + sbox.ospath('A/mu') + '\n' ]
   svntest.actions.run_and_verify_svn(expected_output, [],
                                      'shelf-diff', '--summarize', 'foo')