diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-04-16 23:06:58 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-04-16 23:07:55 -0300 |
commit | dadf35b2a9b0abb6421bc08f2fedba3dbe819d5e (patch) | |
tree | 171fc1472dbcb74db0571d2596e2c84d4d74febb /activesupport/test | |
parent | 457f7709e964a62a24562010c0f79445976cce8b (diff) | |
download | rails-dadf35b2a9b0abb6421bc08f2fedba3dbe819d5e.tar.gz rails-dadf35b2a9b0abb6421bc08f2fedba3dbe819d5e.tar.bz2 rails-dadf35b2a9b0abb6421bc08f2fedba3dbe819d5e.zip |
avoid warning: ambiguous first argument; put parentheses or even spaces
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/time_zone_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/time_zone_test.rb b/activesupport/test/time_zone_test.rb index 58035ebbcd..3b7fbb7808 100644 --- a/activesupport/test/time_zone_test.rb +++ b/activesupport/test/time_zone_test.rb @@ -282,7 +282,7 @@ class TimeZoneTest < Test::Unit::TestCase def test_unknown_zone_with_utc_offset zone = ActiveSupport::TimeZone.create("bogus", -21_600) - assert_equal -21_600, zone.utc_offset + assert_equal(-21_600, zone.utc_offset) end def test_new |