You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2017/12/02 15:47:54 UTC

svn commit: r1816965 - /subversion/trunk/subversion/tests/cmdline/svntest/main.py

Author: stefan2
Date: Sat Dec  2 15:47:54 2017
New Revision: 1816965

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

* subversion/tests/cmdline/svntest/main.py
  (parse_options): FSFS v4 has been released in svn 1.6.

Modified:
    subversion/trunk/subversion/tests/cmdline/svntest/main.py

Modified: subversion/trunk/subversion/tests/cmdline/svntest/main.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svntest/main.py?rev=1816965&r1=1816964&r2=1816965&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svntest/main.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svntest/main.py Sat Dec  2 15:47:54 2017
@@ -2218,7 +2218,7 @@ def parse_options(arglist=sys.argv[1:],
   # Make sure the server-minor-version matches the fsfs-version parameter.
   #
   # Server versions that introduced the respective FSFS formats:
-  introducing_version = { 1:1, 2:4, 3:5, 4:7, 6:8, 7:9 }
+  introducing_version = { 1:1, 2:4, 3:5, 4:6, 6:8, 7:9 }
   if options.fsfs_version:
     if options.fsfs_version in introducing_version:
       introduced_in = introducing_version[options.fsfs_version]