From ef45fd53e47975f94661ea71ce78a1c1fa442bcb Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 28 Jun 2019 14:08:29 +0900 Subject: [PATCH] Fixed the test-case class name for zsh --- test/optparse/test_zsh_completion.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") {}