You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2018/07/02 10:19:30 UTC

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

Author: danielsh
Date: Mon Jul  2 10:19:30 2018
New Revision: 1834834

URL: http://svn.apache.org/viewvc?rev=1834834&view=rev
Log:
Follow-up to r1834810:

* subversion/tests/cmdline/shelf_tests.py:
    Avoid using undefined string escapes, which are deprecated.

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=1834834&r1=1834833&r2=1834834&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/shelf_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/shelf_tests.py Mon Jul  2 10:19:30 2018
@@ -117,8 +117,8 @@ def shelve_unshelve_verify(sbox, modifie
 
   # List; ensure the shelf is listed
   expected_output = svntest.verify.RegexListOutput(
-    ['foo\s*version \d+.*',
-     ' '
+    [r'foo\s*version \d+.*',
+     r' ',
     ])
   svntest.actions.run_and_verify_svn(expected_output, [], 'shelves')