diff --git a/tests/integration/relation_tests/new_relations/application-charm/lib/charms/data_platform_libs/v0/data_interfaces.py b/tests/integration/relation_tests/new_relations/application-charm/lib/charms/data_platform_libs/v0/data_interfaces.py index e4e71ad9b..1e640f785 100644 --- a/tests/integration/relation_tests/new_relations/application-charm/lib/charms/data_platform_libs/v0/data_interfaces.py +++ b/tests/integration/relation_tests/new_relations/application-charm/lib/charms/data_platform_libs/v0/data_interfaces.py @@ -1643,7 +1643,7 @@ def _assign_relation_alias(self, relation_id: int) -> None: logger.debug("Alias %s was already assigned to relation %d", alias, relation.id) available_aliases.remove(alias) - # Set the alias in the unit relation databag of the specific relation. + # Set the alias in the app relation databag of the specific relation. self.update_relation_data(relation_id, {"alias": available_aliases[0]}) def _emit_aliased_event(self, event: RelationChangedEvent, event_name: str) -> None: diff --git a/tests/integration/relation_tests/new_relations/helpers.py b/tests/integration/relation_tests/new_relations/helpers.py index be3e48683..162c9d8f1 100644 --- a/tests/integration/relation_tests/new_relations/helpers.py +++ b/tests/integration/relation_tests/new_relations/helpers.py @@ -50,9 +50,6 @@ async def get_application_relation_data( relation_data = [v for v in relation_data if v["relation-id"] == relation_id] if relation_alias: - import pdb - - pdb.set_trace() # Filter the data based on the cluster/relation alias. relation_data = [ v