Skip to content

Commit

Permalink
Merge pull request #562 from elementary-data/test-ele-996-Arun-kc
Browse files Browse the repository at this point in the history
Test ele 996 arun kc
  • Loading branch information
ellakz authored Jan 4, 2024
2 parents 5f53462 + 71a91ad commit 63f2497
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% set column_obj_and_monitors = [] %}
{% set column_objects = adapter.get_columns_in_relation(model_relation) %}
{% for column_obj in column_objects %}
{% if column_obj.name | lower == column_name | lower %}
{% if column_obj.name.strip('"') | lower == column_name.strip('"') | lower %}
{% set column_monitors = elementary.column_monitors_by_type(elementary.get_column_data_type(column_obj), column_tests) %}
{% set column_item = {'column': column_obj, 'monitors': column_monitors} %}
{{ return(column_item) }}
Expand Down

0 comments on commit 63f2497

Please sign in to comment.