Skip to content
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

Merged

Conversation

gwgeorgea
Copy link

  • 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.
@gwgeorgea gwgeorgea changed the title - Fix occasional exceptions caused by undefined variables. [IS-11] Fix occasional exceptions caused by undefined variables. Nov 1, 2023
@N-Nagorny
Copy link
Collaborator

It would be good to merge #836 and then revisit this one cause #836 fills in an equivalent of receivers_with_or_without_outputs in set_up_tests.

Comment on lines -3677 to +3678
if (activated_receivers < len(self.receivers_with_outputs)):
if (activated_receivers < len(self.is11_utils.receivers_with_or_without_outputs)):
Copy link
Collaborator

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.

Comment on lines -3679 to +3681
.format(len(self.receivers_with_outputs) - activated_receivers))
.format(len(self.is11_utils.receivers_with_or_without_outputs)
- activated_receivers))
Copy link
Collaborator

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.

Comment on lines -3812 to +3814
if (activated_receivers < len(self.receivers_with_outputs)):
if (activated_receivers < len(self.is11_utils.receivers_with_or_without_outputs)):
Copy link
Collaborator

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.

Comment on lines -3814 to +3817
.format(len(self.receivers_with_outputs) - activated_receivers))
.format(len(self.is11_utils.receivers_with_or_without_outputs)
- activated_receivers))
Copy link
Collaborator

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.

Comment on lines -3979 to +3982
if (activated_receivers < len(self.receivers_without_outputs)):
if (activated_receivers < len(self.is11_utils.receivers_with_or_without_outputs)):
Copy link
Collaborator

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.

Comment on lines -3981 to +3985
.format(len(self.receivers_without_outputs) - activated_receivers))
.format(len(self.is11_utils.receivers_with_or_without_outputs)
- activated_receivers))
Copy link
Collaborator

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.

Comment on lines -4023 to +4027
if (activated_receivers < len(self.receivers_without_outputs)):
if (activated_receivers < len(self.is11_utils.receivers_with_or_without_outputs)):
Copy link
Collaborator

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.

Comment on lines -4025 to +4030
.format(len(self.receivers_without_outputs) - activated_receivers))
.format(len(self.is11_utils.receivers_with_or_without_outputs)
- activated_receivers))
Copy link
Collaborator

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.

@N-Nagorny N-Nagorny merged commit adae812 into AMWA-TV:is-11 Apr 27, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants