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 2013/02/05 17:42:57 UTC

svn commit: r1442656 - /subversion/trunk/subversion/tests/cmdline/input_validation_tests.py

Author: stsp
Date: Tue Feb  5 16:42:56 2013
New Revision: 1442656

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

* subversion/tests/cmdline/input_validation_tests.py
  (invalid_diff_targets): This test is expecting 'svn diff' to throw an error
   but the syntax it is using is valid as of r1442645. Add another target to
   the 'diff' invocation to make this test use invalid syntax again.

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

Modified: subversion/trunk/subversion/tests/cmdline/input_validation_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/input_validation_tests.py?rev=1442656&r1=1442655&r2=1442656&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/input_validation_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/input_validation_tests.py Tue Feb  5 16:42:56 2013
@@ -117,9 +117,9 @@ def invalid_delete_targets(sbox):
 def invalid_diff_targets(sbox):
   "invalid targets for 'diff'"
   sbox.build(read_only=True)
-  for (target1, target2) in [("iota", "^/"), ("file://", "iota")]:
+  for (target1, target2, target3) in [("iota", "^/", "A/mu"), ("file://", "iota", "A/mu")]:
     run_and_verify_svn_in_wc(sbox, "svn: E205000: Cannot mix repository and working "
-                             "copy targets", 'diff', target1, target2)
+                             "copy targets", 'diff', target1, target2, target3)
 
 def invalid_export_targets(sbox):
   "invalid targets for 'export'"