This commit is contained in:
Tim Pease 2018-09-19 14:25:01 -06:00
Родитель 7f76bf3e81
Коммит 0478db9cff
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -50,7 +50,7 @@ module Chatops::Controller::TestCaseHelpers
named_params, command = extract_named_params(message)
matcher = matchers.find { |matcher| matcher["regex"].match(command) }
matcher = matchers.find { |m| m["regex"].match(command) }
raise NoMatchingCommandRegex.new("No command matches '#{command}'") unless matcher