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 2011/02/12 18:31:11 UTC

svn commit: r1070116 - /subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py

Author: stsp
Date: Sat Feb 12 17:31:10 2011
New Revision: 1070116

URL: http://svn.apache.org/viewvc?rev=1070116&view=rev
Log:
* subversion/tests/cmdline/svnadmin_tests.py
  (create_in_repo_subdir): Fix for BDB by testing with the 'conf' directory
    which exists in both FSFS and BDB repositories (and likely in any other
    future backend type).

Found by: danielsh

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

Modified: subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py?rev=1070116&r1=1070115&r2=1070116&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py Sat Feb 12 17:31:10 2011
@@ -924,7 +924,7 @@ def create_in_repo_subdir(sbox):
   cwd = os.getcwd()
   try:
     # This should fail, too
-    subdir = os.path.join(repo_dir, 'db', 'revs')
+    subdir = os.path.join(repo_dir, 'conf')
     os.chdir(subdir)
     svntest.main.create_repos('Z')
     os.chdir(cwd)