aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/adapter_test.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2006-03-15 02:17:31 +0000
committerMichael Koziarski <michael@koziarski.com>2006-03-15 02:17:31 +0000
commitc32fa73ea15d0d1b355b1f88f82757d79f82ba85 (patch)
treed139948ba035b6e5f20245f6af7563fd1001699d /activerecord/test/adapter_test.rb
parent9de81036dd31c9b02c63586e598214507feff501 (diff)
downloadrails-c32fa73ea15d0d1b355b1f88f82757d79f82ba85.tar.gz
rails-c32fa73ea15d0d1b355b1f88f82757d79f82ba85.tar.bz2
rails-c32fa73ea15d0d1b355b1f88f82757d79f82ba85.zip
Unit test fixes for postgresql.
Allow to_xml tests to pass in time zones other than CST. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3870 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/adapter_test.rb')
-rw-r--r--activerecord/test/adapter_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/adapter_test.rb b/activerecord/test/adapter_test.rb
index 034e9ac45a..9edc7cc640 100644
--- a/activerecord/test/adapter_test.rb
+++ b/activerecord/test/adapter_test.rb
@@ -53,7 +53,7 @@ class AdapterTest < Test::Unit::TestCase
sub = Subscriber.new(:name => 'robert drake')
sub.id = 'bob drake'
- assert sub.save!
+ assert_nothing_raised { sub.save! }
end
end
end