From 1c453c06081222e9b75dac428b08ffd26f1ca2a7 Mon Sep 17 00:00:00 2001 From: eban Date: Fri, 19 Nov 2004 02:26:23 +0000 Subject: * lib/xmlrpc/datetime.rb (XMLRPC::DateTime#==): should use Array() instead of to_a. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7318 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/xmlrpc/datetime.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/xmlrpc') diff --git a/lib/xmlrpc/datetime.rb b/lib/xmlrpc/datetime.rb index 8ae6c7a56e..298263fe8a 100644 --- a/lib/xmlrpc/datetime.rb +++ b/lib/xmlrpc/datetime.rb @@ -127,7 +127,7 @@ class DateTime end def ==(o) - self.to_a == o.to_a + Array(self) == Array(o) end end -- cgit v1.2.3