Skip to content

Commit

Permalink
validate_unique_metric_names - bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
haritamar committed Aug 12, 2024
1 parent 6876c21 commit 0d37cdb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

{% for graph_node in graph.nodes.values() %}
{% if test_node.unique_id != graph_node.unique_id and graph_node.resource_type == "test" %}
{% set test_metadata = graph_node.test_metadata %}
{% set test_metadata = elementary.safe_get_with_default(graph_node, 'test_metadata', {}) %}
{% if test_metadata.namespace == "elementary" and test_metadata.name == "collect_metrics" %}
{% set test_parent_model_unique_ids = elementary.get_parent_model_unique_ids_from_test_node(graph_node) %}
{% if parent_model_unique_ids == test_parent_model_unique_ids %}
Expand Down

0 comments on commit 0d37cdb

Please sign in to comment.