summaryrefslogtreecommitdiff
path: root/test/rss/rss-assertions.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rss/rss-assertions.rb')
-rw-r--r--test/rss/rss-assertions.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/rss/rss-assertions.rb b/test/rss/rss-assertions.rb
index d8e597cd5a..435f893e8d 100644
--- a/test/rss/rss-assertions.rb
+++ b/test/rss/rss-assertions.rb
@@ -15,10 +15,10 @@ module RSS
module Assertions
def assert_parse(rss, assert_method, *args)
- send("assert_#{assert_method}", *args) do
+ __send__("assert_#{assert_method}", *args) do
::RSS::Parser.parse(rss)
end
- send("assert_#{assert_method}", *args) do
+ __send__("assert_#{assert_method}", *args) do
::RSS::Parser.parse(rss, false).validate
end
end
@@ -119,7 +119,7 @@ module RSS
_wrap_assertion do
n_attrs = normalized_attrs(attrs)
::RSS::XMLStyleSheet::ATTRIBUTES.each do |name|
- assert_equal(n_attrs[name], xsl.send(name))
+ assert_equal(n_attrs[name], xsl.__send__(name))
end
end
end