Implement change suggested by @kalekundert in PR

This commit is contained in:
Bruno Oliveira 2018-07-27 15:07:20 -03:00
parent 2eb9301ad5
commit d0ba242c46
1 changed files with 1 additions and 3 deletions

View File

@ -211,9 +211,7 @@ class ApproxScalar(ApproxBase):
the pre-specified tolerance.
"""
if _is_numpy_array(actual):
import numpy as np
return np.all(abs(self.expected - actual) <= self.tolerance)
return all(a == self for a in actual)
# Short-circuit exact equality.
if actual == self.expected: