You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2011/04/14 20:38:24 UTC

svn commit: r1092436 - /subversion/trunk/subversion/tests/cmdline/externals_tests.py

Author: hwright
Date: Thu Apr 14 18:38:24 2011
New Revision: 1092436

URL: http://svn.apache.org/viewvc?rev=1092436&view=rev
Log:
* subversion/tests/cmdline/externals_tests.py
  (file_external_in_sibling): Use helper function to generate expected output.

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

Modified: subversion/trunk/subversion/tests/cmdline/externals_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/externals_tests.py?rev=1092436&r1=1092435&r2=1092436&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/externals_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/externals_tests.py Thu Apr 14 18:38:24 2011
@@ -1683,9 +1683,10 @@ def file_external_in_sibling(sbox):
   change_external(sbox.ospath('A2'), externals_prop)
   sbox.simple_update()
 
-  expected_stdout = ["Updating '.' ...\n", "At revision 2.\n"]
   os.chdir(sbox.ospath("A"))
-  svntest.actions.run_and_verify_svn(None, expected_stdout, [], 'update')
+  svntest.actions.run_and_verify_svn(None,
+                            svntest.actions.expected_noop_update_output(2),
+                            [], 'update')
 
 @XFail()
 @Issue(3823)