aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r--activesupport/test/core_ext/hash_ext_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/test/core_ext/hash_ext_test.rb b/activesupport/test/core_ext/hash_ext_test.rb
index bcb4b43af0..f0a50ec5fe 100644
--- a/activesupport/test/core_ext/hash_ext_test.rb
+++ b/activesupport/test/core_ext/hash_ext_test.rb
@@ -313,7 +313,7 @@ class HashToXmlTest < Test::Unit::TestCase
<title>The First Topic</title>
<author-name>David</author-name>
<id type="integer">1</id>
- <approved type="boolean">false</approved>
+ <approved type="boolean"> true </approved>
<replies-count type="integer">0</replies-count>
<written-on type="date">2003-07-16</written-on>
<viewed-at type="datetime">2003-07-16T09:28:00+0000</viewed-at>
@@ -327,7 +327,7 @@ class HashToXmlTest < Test::Unit::TestCase
:title => "The First Topic",
:author_name => "David",
:id => 1,
- :approved => false,
+ :approved => true,
:replies_count => 0,
:written_on => Date.new(2003, 7, 16),
:viewed_at => Time.utc(2003, 7, 16, 9, 28),