Author: joeswatosh
Date: Sun Mar 21 01:12:30 2010
New Revision: 925709
URL: http://svn.apache.org/viewvc?rev=925709&view=rev
Log:
Follow on to r921445 "Remove some access batons from post-commit processing"
which exposed the brokenness of the tests.
* subversion/bindings/swig/ruby/test/test_wc.rb
(SvnWcTest#test_ancestry): Remove incorrectly setup assertions around
mark_missing_deleted which wraps svn_wc_mark_missing_deleted which is now
deprecated, under-documented and usable in only very narrow and specific
circumstances.
Modified:
subversion/trunk/subversion/bindings/swig/ruby/test/test_wc.rb
Modified: subversion/trunk/subversion/bindings/swig/ruby/test/test_wc.rb
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/ruby/test/test_wc.rb?rev=925709&r1=925708&r2=925709&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/swig/ruby/test/test_wc.rb (original)
+++ subversion/trunk/subversion/bindings/swig/ruby/test/test_wc.rb Sun Mar 21
01:12:30 2010
@@ -333,15 +333,6 @@ class SvnWcTest < Test::Unit::TestCase
],
ignored_errors.collect {|path, err| [path, err.class]})
end
-
- Svn::Wc::AdmAccess.open(nil, @wc_path, true, 5) do |access|
- assert_raises(Svn::Error::WcPathFound) do
- access.mark_missing_deleted(path1)
- end
- FileUtils.rm(path1)
- access.mark_missing_deleted(path1)
- access.maybe_set_repos_root(path2, @repos_uri)
- end
end
end