Revert "Fix Zeus (this is addressed by other commits)"

This reverts commit c600c61c9b.
This commit is contained in:
Elliot Winkler 2018-09-15 15:34:09 -06:00
parent 18e7c88aaa
commit 4a4255772d
1 changed files with 3 additions and 3 deletions

View File

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