You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2015/10/02 13:20:42 UTC

svn commit: r1706373 - /subversion/trunk/subversion/tests/cmdline/diff_tests.py

Author: rhuijben
Date: Fri Oct  2 11:20:42 2015
New Revision: 1706373

URL: http://svn.apache.org/viewvc?rev=1706373&view=rev
Log:
* subversion/tests/cmdline/diff_tests.py
  (diff_symlinks): Following up on r1706372, use symlink of different size
    than 'iota' to properly detect changes during 'svn diff'.

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

Modified: subversion/trunk/subversion/tests/cmdline/diff_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/diff_tests.py?rev=1706373&r1=1706372&r2=1706373&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/diff_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/diff_tests.py Fri Oct  2 11:20:42 2015
@@ -5059,7 +5059,7 @@ def diff_symlinks(sbox):
 
   sbox.simple_commit()
   os.remove(sbox.ospath('to-iota'))
-  sbox.simple_symlink('A/mu', 'to-iota')
+  sbox.simple_symlink('A/B/E/alpha', 'to-iota')
 
   svntest.actions.run_and_verify_svn([
     'Index: %s\n' % sbox.path('to-iota'),
@@ -5069,7 +5069,7 @@ def diff_symlinks(sbox):
     '@@ -1 +1 @@\n',
     '-link iota\n',
     '\ No newline at end of file\n',
-    '+link A/mu\n',
+    '+link A/B/E/alpha\n',
     '\ No newline at end of file\n',
   ], [], 'diff', wc_dir)
 
@@ -5082,7 +5082,7 @@ def diff_symlinks(sbox):
     '@@ -1 +1 @@\n',
     '-iota\n',
     '\ No newline at end of file\n',
-    '+A/mu\n',
+    '+A/B/E/alpha\n',
     '\ No newline at end of file\n',
   ], [], 'diff', wc_dir, '--git')