You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2010/08/03 16:34:43 UTC

svn commit: r981900 - /subversion/trunk/subversion/tests/cmdline/stat_tests.py

Author: julianfoad
Date: Tue Aug  3 14:34:42 2010
New Revision: 981900

URL: http://svn.apache.org/viewvc?rev=981900&view=rev
Log:
* subversion/tests/cmdline/stat_tests.py
  (status_missing_dir): Fix breakage introduced in r981899.

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

Modified: subversion/trunk/subversion/tests/cmdline/stat_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/stat_tests.py?rev=981900&r1=981899&r2=981900&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/stat_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/stat_tests.py Tue Aug  3 14:34:42 2010
@@ -958,20 +958,20 @@ def status_missing_dir(sbox):
                                      "status", wc_dir)
 
   if svntest.main.wc_is_singledb(wc_dir):
-    expected = svntest.verify.UnorderedOutput([
+    expected = [
           "!                1   " + a_d_g + "\n",
           "!                1   " + os.path.join(a_d_g, "rho") + "\n",
           "!                1   " + os.path.join(a_d_g, "pi") + "\n",
           "!                1   " + os.path.join(a_d_g, "tau") + "\n",
-          "Status against revision:      1\n" ])
+          "Status against revision:      1\n" ]
   else:
-    expected = svntest.verify.UnorderedOutput(
-         ["        *            " + os.path.join(a_d_g, "pi") + "\n",
+    expected = [
+          "        *            " + os.path.join(a_d_g, "pi") + "\n",
           "        *            " + os.path.join(a_d_g, "rho") + "\n",
           "        *            " + os.path.join(a_d_g, "tau") + "\n",
           "!       *       ?    " + a_d_g + "\n",
           "        *        1   " + os.path.join(wc_dir, "A", "D") + "\n",
-          "Status against revision:      1\n" ])
+          "Status against revision:      1\n" ]
 
   # now run status -u, we should be able to do this without crashing
   svntest.actions.run_and_verify_svn(None, UnorderedOutput(expected), [],