1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test_gem_installer.rb: fix argument order

* test/rubygems/test_gem_installer.rb (TestGemInstaller#test_dir): fix
  argument order.  expected value must come first.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35552 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-05-07 01:16:32 +00:00
parent 07ea7112dd
commit b5ba059a0b
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon May 7 10:16:30 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/rubygems/test_gem_installer.rb (TestGemInstaller#test_dir): fix
argument order. expected value must come first.
Mon May 07 09:14:11 2012 Martin Bosslet <Martin.Bosslet@googlemail.com>
* ext/openssl/ossl_ssl.c: support TLSv1.1 & TLSv1.2. Add

View file

@ -1217,7 +1217,7 @@ load Gem.bin_path('a', 'executable', version)
def test_dir
util_setup_install
assert_match @installer.dir, %r!/installer/gems/a-2$!
assert_match %r!/installer/gems/a-2\z!, @installer.dir
end
def old_ruby_required