diff options
author | Sebastian Martinez <sebastian@wyeworks.com> | 2010-03-18 13:25:12 -0300 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-03-18 11:54:50 -0700 |
commit | 14b1dc209d4201021f1e40bca8a18efde3b97065 (patch) | |
tree | 41d23188c29b6732cc4d743ecf7a155d077c967b /activesupport | |
parent | bc36618ae6617cd3549ad1a57516fecf81f95267 (diff) | |
download | rails-14b1dc209d4201021f1e40bca8a18efde3b97065.tar.gz rails-14b1dc209d4201021f1e40bca8a18efde3b97065.tar.bz2 rails-14b1dc209d4201021f1e40bca8a18efde3b97065.zip |
Fixed require line
Signed-off-by: wycats <wycats@gmail.com>
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/ts_isolated.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/ts_isolated.rb b/activesupport/test/ts_isolated.rb index cbab61a523..fc1bbd6e3d 100644 --- a/activesupport/test/ts_isolated.rb +++ b/activesupport/test/ts_isolated.rb @@ -1,6 +1,6 @@ require 'test/unit' require 'rbconfig' -require 'active_support/core_ext/kernel/reporting' +require 'lib/active_support/core_ext/kernel/reporting' class TestIsolated < Test::Unit::TestCase ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME')) |