-
Notifications
You must be signed in to change notification settings - Fork 48
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
[IS-11] Fix occasional exceptions caused by undefined variables. #838
[IS-11] Fix occasional exceptions caused by undefined variables. #838
Conversation
gwgeorgea
commented
Nov 1, 2023
- Fix occasional exceptions caused by undefined variables.
- Fix wrong list of receivers with outputs. Needed to test both audio and video properly.
- New 256 byte EDID with CEA extension, prevents audio stream from going down during IS-11 test.
- Fix wrong list of receivers with outputs. Needed to test both audio and video properly. - New 256 byte EDID with CEA extension, prevents audio stream from going down during IS-11 test.
if (activated_receivers < len(self.receivers_with_outputs)): | ||
if (activated_receivers < len(self.is11_utils.receivers_with_or_without_outputs)): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replace is11_utils.receivers_with_or_without_outputs
with self.receivers
.
.format(len(self.receivers_with_outputs) - activated_receivers)) | ||
.format(len(self.is11_utils.receivers_with_or_without_outputs) | ||
- activated_receivers)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replace is11_utils.receivers_with_or_without_outputs
with self.receivers
.
if (activated_receivers < len(self.receivers_with_outputs)): | ||
if (activated_receivers < len(self.is11_utils.receivers_with_or_without_outputs)): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replace is11_utils.receivers_with_or_without_outputs
with self.receivers
.
.format(len(self.receivers_with_outputs) - activated_receivers)) | ||
.format(len(self.is11_utils.receivers_with_or_without_outputs) | ||
- activated_receivers)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replace is11_utils.receivers_with_or_without_outputs
with self.receivers
.
if (activated_receivers < len(self.receivers_without_outputs)): | ||
if (activated_receivers < len(self.is11_utils.receivers_with_or_without_outputs)): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replace is11_utils.receivers_with_or_without_outputs
with self.receivers
.
.format(len(self.receivers_without_outputs) - activated_receivers)) | ||
.format(len(self.is11_utils.receivers_with_or_without_outputs) | ||
- activated_receivers)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replace is11_utils.receivers_with_or_without_outputs
with self.receivers
.
if (activated_receivers < len(self.receivers_without_outputs)): | ||
if (activated_receivers < len(self.is11_utils.receivers_with_or_without_outputs)): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replace is11_utils.receivers_with_or_without_outputs
with self.receivers
.
.format(len(self.receivers_without_outputs) - activated_receivers)) | ||
.format(len(self.is11_utils.receivers_with_or_without_outputs) | ||
- activated_receivers)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replace is11_utils.receivers_with_or_without_outputs
with self.receivers
.