aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-02 21:30:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-02 21:30:23 +0000
commitd57a8a44a878ec5fb8714975a38ae99914da0f16 (patch)
treeaa8ceff5eae6b1e512f41de08fc05d5b0c94cf24 /test
parent54fe5bf6e7209a99d9a3565b12efe1be751b349d (diff)
downloadruby-d57a8a44a878ec5fb8714975a38ae99914da0f16.tar.gz
* test/ruby/test_path.rb (test_path): workaround for drive
letter. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28136 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_path.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_path.rb b/test/ruby/test_path.rb
index ad080fa444..31c1885371 100644
--- a/test/ruby/test_path.rb
+++ b/test/ruby/test_path.rb
@@ -43,7 +43,7 @@ class TestPath < Test::Unit::TestCase
assert_equal("//", File.expand_path(".", "//"))
assert_equal("//sub", File.expand_path("sub", "//"))
- assert_equal("/tmp/\u3042", File.expand_path("\u3042", "/tmp"))
+ assert_equal("//127.0.0.1/\u3042", File.expand_path("\u3042", "//127.0.0.1"))
end
def test_dirname