Commit 78c5d4dd authored by Maxim Rydkin's avatar Maxim Rydkin

replace `is_multi_check?` with `multi_check?`

parent 6a56bec7
......@@ -73,7 +73,7 @@ module SystemCheck
self.class.instance_methods(false).include?(:skip?)
end
def is_multi_check?
def multi_check?
self.class.instance_methods(false).include?(:multi_check)
end
......
......@@ -53,7 +53,7 @@ module SystemCheck
end
# When implements a multi check, we don't control the output
if check.is_multi_check?
if check.multi_check?
check.multi_check
return
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment