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 2022/03/08 14:06:18 UTC

svn commit: r1898732 - /subversion/trunk/subversion/tests/cmdline/basic_tests.py

Author: danielsh
Date: Tue Mar  8 14:06:18 2022
New Revision: 1898732

URL: http://svn.apache.org/viewvc?rev=1898732&view=rev
Log:
tests: Correct a comment.

Follow-up to r1335623.

* subversion/tests/cmdline/basic_tests.py
  (basic_update_corruption): Delete the "Repair the text-base" part of step #3
    and renumber the remaining steps accordingly.  The numbers now match
    basic_commit_corruption(), where this comment is originally from.

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

Modified: subversion/trunk/subversion/tests/cmdline/basic_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/basic_tests.py?rev=1898732&r1=1898731&r2=1898732&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/basic_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/basic_tests.py Tue Mar  8 14:06:18 2022
@@ -428,11 +428,10 @@ def basic_update_corruption(sbox):
   ##
   ##    1. Make a working copy at rev 1, duplicate it.  Now we have
   ##        two working copies at rev 1.  Call them first and second.
-  ##    2. Make a local mod to `first/A/mu'.
-  ##    3. Repair the text-base, commit again, expect success.
-  ##    4. Intentionally corrupt `second/A/.svn/text-base/mu.svn-base'.
-  ##    5. Try to update `second', expect failure.
-  ##    6. Repair the text-base, update again, expect success.
+  ##    2. Make a local mod to `first/A/mu' and commit it.
+  ##    3. Intentionally corrupt `second/A/.svn/text-base/mu.svn-base'.
+  ##    4. Try to update `second', expect failure.
+  ##    5. Repair the text-base, update again, expect success.
   ##
   ## Here we go...