aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-18 06:03:24 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-18 06:03:24 +0000
commit5de2bb431a88466d669d0a743b8a12dd0c434027 (patch)
tree298ff97d469e6cb645ad43297cf04739f1aeac3d
parent0ad72caa65007c1896eccb0e73462d841c8f66f7 (diff)
downloadruby-5de2bb431a88466d669d0a743b8a12dd0c434027.tar.gz
* test/rubygems/test_gem_specification.rb: '/' is not always the root.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47623 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--test/rubygems/test_gem_specification.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 26db3bcd87..4eb5e2eb31 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Sep 18 15:02:15 2014 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * test/rubygems/test_gem_specification.rb: '/' is not always the root.
+
Thu Sep 18 09:36:37 2014 Scott Francis <scott.francis@shopify.com>
* vm_method.c (Init_Method): make global method cache size
diff --git a/test/rubygems/test_gem_specification.rb b/test/rubygems/test_gem_specification.rb
index 146e249381..dd626d9292 100644
--- a/test/rubygems/test_gem_specification.rb
+++ b/test/rubygems/test_gem_specification.rb
@@ -1820,7 +1820,7 @@ dependencies: []
@ext.require_paths = 'lib'
- assert_equal ['/foo/ext-1', 'lib'], @ext.require_paths
+ assert_equal [File.expand_path('/foo/ext-1'), 'lib'], @ext.require_paths
end
ensure
class << Gem