Fix Zeus (this is addressed by other commits)

This commit is contained in:
Elliot Winkler 2018-09-11 22:42:32 -06:00 committed by Gui Vieira
parent 507dc57004
commit c600c61c9b
1 changed files with 3 additions and 3 deletions

View File

@ -496,7 +496,7 @@ EOT
end
end
values_outside_of_array.any? do |value|
values_outside_of_array.all? do |value|
allows_value_of(value, @low_message)
end
end
@ -517,8 +517,8 @@ EOT
end
end
values_outside_of_array.all? do |value|
disallows_value_of(value, @low_message)
values_outside_of_array.none? do |value|
allows_value_of(value, @low_message)
end
end