You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ne...@apache.org on 2012/11/15 18:20:17 UTC

svn commit: r1409888 - /subversion/trunk/subversion/tests/cmdline/externals_tests.py

Author: neels
Date: Thu Nov 15 17:20:16 2012
New Revision: 1409888

URL: http://svn.apache.org/viewvc?rev=1409888&view=rev
Log:
* subversion/tests/cmdline/externals_tests.py (duplicate_targets):
   Fix on windows.

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

Modified: subversion/trunk/subversion/tests/cmdline/externals_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/externals_tests.py?rev=1409888&r1=1409887&r2=1409888&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/externals_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/externals_tests.py Thu Nov 15 17:20:16 2012
@@ -2898,7 +2898,7 @@ def duplicate_targets(sbox):
   abs_wc_dir = os.path.abspath(sbox.wc_dir)
 
   expected_stderr = verify.RegexOutput(
-    ".*Invalid svn:externals property on '" + abs_wc_dir +
+    ".*Invalid svn:externals property on '" + re.escape(abs_wc_dir) +
     "': target 'barf' appears more than once\n",
     match_all=False)