You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
960 B
24 lines
960 B
6 years ago
|
|
||
|
http://svn.apache.org/viewvc?view=revision&revision=1327373
|
||
|
|
||
|
--- subversion-1.7.9/subversion/bindings/swig/ruby/test/test_wc.rb.swighash
|
||
|
+++ subversion-1.7.9/subversion/bindings/swig/ruby/test/test_wc.rb
|
||
|
@@ -326,12 +326,16 @@ class SvnWcTest < Test::Unit::TestCase
|
||
|
ignored_errors = []
|
||
|
callbacks.ignored_errors = ignored_errors
|
||
|
access.walk_entries(@wc_path, callbacks)
|
||
|
+ sorted_ignored_errors = ignored_errors.sort_by {|path, err| path}
|
||
|
+ sorted_ignored_errors = sorted_ignored_errors.collect! do |path, err|
|
||
|
+ [path, err.class]
|
||
|
+ end
|
||
|
assert_equal([
|
||
|
[@wc_path, Svn::Error::Cancelled],
|
||
|
[path1, Svn::Error::Cancelled],
|
||
|
[path2, Svn::Error::Cancelled],
|
||
|
],
|
||
|
- ignored_errors.collect {|path, err| [path, err.class]})
|
||
|
+ sorted_ignored_errors)
|
||
|
end
|
||
|
end
|
||
|
end
|