You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2010/06/22 12:19:39 UTC

svn commit: r956840 - /subversion/trunk/subversion/bindings/swig/ruby/test/test_wc.rb

Author: rhuijben
Date: Tue Jun 22 10:19:38 2010
New Revision: 956840

URL: http://svn.apache.org/viewvc?rev=956840&view=rev
Log:
Following up on r956836, assert specific notify actions
that should have been mapped to ruby.

* subversion/bindings/swig/ruby/test/test_wc.rb
  (test_changelist): Test for action types

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=956840&r1=956839&r2=956840&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/swig/ruby/test/test_wc.rb (original)
+++ subversion/trunk/subversion/bindings/swig/ruby/test/test_wc.rb Tue Jun 22 10:19:38 2010
@@ -1052,8 +1052,8 @@ EOE
     Svn::Wc::AdmAccess.open(nil, @wc_path) do |access|
       access.set_changelist(path, "456", nil, notify_collector)
     end
-    assert_equal([[File.expand_path(path), nil],
-                  [File.expand_path(path), nil]],
+    assert_equal([[File.expand_path(path), Svn::Wc::NOTIFY_CHANGELIST_CLEAR],
+                  [File.expand_path(path), Svn::Wc::NOTIFY_CHANGELIST_SET]],
                  notifies.collect {|notify| [notify.path, notify.action]})
 
     notifies = []