aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems
diff options
context:
space:
mode:
authorglass <glass@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-10 03:01:18 +0000
committerglass <glass@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-10 03:01:18 +0000
commit0c14c3ab0b1bbf3f2a5b2c0accb2a53528635e44 (patch)
tree7035e3f5f6b57521cc5f7e1ba7688f27b97ba10f /test/rubygems
parentf64ac5d4cd1b96fb71da0955ea9f322e8feac290 (diff)
downloadruby-0c14c3ab0b1bbf3f2a5b2c0accb2a53528635e44.tar.gz
* ext/win32ole/win32ole_variant.c: fix typo "indicies".
the patch is from davydovanton <antondavydov.o at gmail.com>. [fix GH-892] * lib/rubygems/indexer.rb: ditto. * test/rubygems/test_gem_indexer.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50459 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rubygems')
-rw-r--r--test/rubygems/test_gem_indexer.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/rubygems/test_gem_indexer.rb b/test/rubygems/test_gem_indexer.rb
index 5ce0788c08..8b505efd98 100644
--- a/test/rubygems/test_gem_indexer.rb
+++ b/test/rubygems/test_gem_indexer.rb
@@ -48,11 +48,11 @@ class TestGemIndexer < Gem::TestCase
assert indexer.build_modern
end
- def test_build_indicies
+ def test_build_indices
@indexer.make_temp_directories
use_ui @ui do
- @indexer.build_indicies
+ @indexer.build_indices
end
specs_path = File.join @indexer.directory, "specs.#{@marshal_version}"
@@ -198,7 +198,7 @@ class TestGemIndexer < Gem::TestCase
assert_match %r%^Generating latest specs index$%, @ui.output
assert_match %r%^Generating prerelease specs index$%, @ui.output
assert_match %r%^Complete$%, @ui.output
- assert_match %r%^Compressing indicies$%, @ui.output
+ assert_match %r%^Compressing indices$%, @ui.output
assert_equal '', @ui.error
end