Skip to content

Commit e76fe0f

Browse files
committed
style: fix ruff E501 line-length violations in column tags test
1 parent a53a02f commit e76fe0f

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

tests/unit/relation_configs/test_column_tags_config.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,11 @@ def test_from_relation_config__without_column_tags(self):
5454
def test_from_relation_config__with_dict(self):
5555
model = Mock()
5656
model.columns = {
57-
"email": {"_extra": {"databricks_tags": {"pii": "", "env": "prod", "priority": 0, "enabled": False}}},
57+
"email": {
58+
"_extra": {
59+
"databricks_tags": {"pii": "", "env": "prod", "priority": 0, "enabled": False}
60+
}
61+
},
5862
"id": {"_extra": {}},
5963
"created_at": {},
6064
}
@@ -71,7 +75,9 @@ def test_from_relation_config__with_column_info(self):
7175
"id": ColumnInfo(name="id", _extra={}),
7276
"email": ColumnInfo(
7377
name="email",
74-
_extra={"databricks_tags": {"pii": "", "env": "prod", "priority": 0, "enabled": False}},
78+
_extra={
79+
"databricks_tags": {"pii": "", "env": "prod", "priority": 0, "enabled": False}
80+
},
7581
),
7682
"created_at": ColumnInfo(name="created_at"),
7783
}

0 commit comments

Comments
 (0)