-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DataPoint.has_bounds implementation correctness #11605
Comments
Test failure log: https://www.pastery.net/nbmzwm/ |
relevant section:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The DataPoint.has_bounds implementation is:
which will report false for
self.lower = self.upper = 0
.Updating this check to
self.lower is not None and self.upper is not None
is probably more correct but breaks unit tests. (The log is too long to attach as a comment to this issue.)This happens because we end up in
compute_signficance
from here because has_bounds() is now true and the compute_signficance method doesnt expect lower = upper = 0┆Issue is synchronized with this Jira Task
The text was updated successfully, but these errors were encountered: