diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-06-28 14:08:29 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-06-28 14:09:17 +0900 |
commit | ef45fd53e47975f94661ea71ce78a1c1fa442bcb (patch) | |
tree | c7d7f2fc5fb95d20750910494432a4b17e694202 /test/optparse/test_zsh_completion.rb | |
parent | be14f62cafff30a6127c6ff533fec6de232ba7dd (diff) |
Fixed the test-case class name for zsh
Diffstat (limited to 'test/optparse/test_zsh_completion.rb')
-rw-r--r-- | test/optparse/test_zsh_completion.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/optparse/test_zsh_completion.rb b/test/optparse/test_zsh_completion.rb index 1bc6c7f0bb..c548d4af8a 100644 --- a/test/optparse/test_zsh_completion.rb +++ b/test/optparse/test_zsh_completion.rb @@ -4,7 +4,7 @@ require 'optparse' class TestOptionParser < Test::Unit::TestCase end -class TestOptionParser::BashCompletion < Test::Unit::TestCase +class TestOptionParser::ZshCompletion < Test::Unit::TestCase def setup @opt = OptionParser.new @opt.define("-z", "zzz") {} |