replace is_multi_check? with multi_check?

This commit is contained in:
Maxim Rydkin 2017-08-24 20:01:22 +03:00
parent 6a56bec735
commit 78c5d4ddc2
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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