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 2017/06/28 04:42:01 UTC

svn commit: r1800116 - /subversion/trunk/tools/dist/backport_tests.py

Author: danielsh
Date: Wed Jun 28 04:42:01 2017
New Revision: 1800116

URL: http://svn.apache.org/viewvc?rev=1800116&view=rev
Log:
* tools/dist/backport_tests.py
  (BackportTest.__call__.wrapped_test_func): Typo fix.  No functional change.

Modified:
    subversion/trunk/tools/dist/backport_tests.py

Modified: subversion/trunk/tools/dist/backport_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/backport_tests.py?rev=1800116&r1=1800115&r2=1800116&view=diff
==============================================================================
--- subversion/trunk/tools/dist/backport_tests.py (original)
+++ subversion/trunk/tools/dist/backport_tests.py Wed Jun 28 04:42:01 2017
@@ -89,8 +89,8 @@ class BackportTest(object):
 
   def __call__(self, test_func):
     """Return a decorator that: builds TEST_FUNC's sbox, creates
-    ^/subversion/trunk, and calls TEST_FUNC, then compare its output to the
-    expected dump file named after TEST_FUNC."""
+    ^/subversion/trunk, calls TEST_FUNC, and compares the resulting history
+    to the expected dump file, which is named after TEST_FUNC."""
 
     # .wraps() propagates the wrappee's docstring to the wrapper.
     @functools.wraps(test_func)