diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-02-24 13:10:46 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-02-24 13:10:46 +0000 |
commit | ef339580947c7df1281263ccfb99718887e5378d (patch) | |
tree | 49b17e75bae90e436884ade206c10209db785884 /test/rss/test_parser_2.0.rb | |
parent | 66f913572682f54eda3b0d4b78c5e9cef08043dd (diff) |
Use require_relative to require local library
* from 1.9 require relative path from the file must use require_relative.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39476 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rss/test_parser_2.0.rb')
-rw-r--r-- | test/rss/test_parser_2.0.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rss/test_parser_2.0.rb b/test/rss/test_parser_2.0.rb index 249347d3dc..68c7d1cca0 100644 --- a/test/rss/test_parser_2.0.rb +++ b/test/rss/test_parser_2.0.rb @@ -1,4 +1,4 @@ -require "rss-testcase" +require_relative "rss-testcase" require "rss/2.0" |