You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2016/10/30 21:37:00 UTC

svn commit: r1767184 - /subversion/trunk/subversion/tests/cmdline/list_tests.py

Author: stefan2
Date: Sun Oct 30 21:37:00 2016
New Revision: 1767184

URL: http://svn.apache.org/viewvc?rev=1767184&view=rev
Log:
Follow-up to r1767183: Fix tests under Windows.

* subversion/tests/cmdline/list_tests.py
  (list_plain,
   list_verbose): URLs must always use forward slashes.

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

Modified: subversion/trunk/subversion/tests/cmdline/list_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/list_tests.py?rev=1767184&r1=1767183&r2=1767184&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/list_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/list_tests.py Sun Oct 30 21:37:00 2016
@@ -54,7 +54,7 @@ def list_plain(sbox):
   "basic, recursive list"
 
   sbox.build(read_only=True)
-  path = os.path.join(sbox.repo_url, 'A', 'D')
+  path = sbox.repo_url + "/A/D"
 
   # check plain info
   expected = [ "G/\n",
@@ -75,7 +75,7 @@ def list_verbose(sbox):
   "verbose recursive list"
 
   sbox.build(read_only=True)
-  path = os.path.join(sbox.repo_url, 'A', 'D')
+  path = sbox.repo_url + "/A/D"
 
   # check plain info
   expected = svntest.verify.RegexListOutput([