mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix tests for load_path.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23817 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4a81d13592
commit
b205b5e7b6
2 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ assert_finish 5, %q{
|
|||
assert_equal 'A::C', %q{
|
||||
open("zzz.rb", "w") {}
|
||||
class A
|
||||
autoload :C, "zzz"
|
||||
autoload :C, "./zzz"
|
||||
class C
|
||||
end
|
||||
C
|
||||
|
|
|
@ -228,7 +228,7 @@ assert_equal 'ok', %{
|
|||
end
|
||||
END
|
||||
end
|
||||
require "zzz.rb"
|
||||
require "./zzz.rb"
|
||||
$result
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue