Fix typos in test runner's help output

This commit is contained in:
Prathamesh Sonpatki 2015-03-21 18:25:58 +05:30
parent 92a3c8dcdf
commit 64eb76ed16

@ -14,7 +14,7 @@ def self.parse(args)
opts.separator ""
opts.on("-e", "--environment [ENV]",
"run tests in the ENV environment") do |env|
"Run tests in the ENV environment") do |env|
options[:environment] = env.strip
end
opts.separator ""
@ -40,7 +40,7 @@ def self.parse(args)
opts.separator "Output options:"
opts.on("-b", "--backtrace",
"show the complte backtrace") do
"Show the complete backtrace") do
options[:backtrace] = true
end