kaxil commented on code in PR #26134:
URL: https://github.com/apache/airflow/pull/26134#discussion_r962162405
##########
tests/lineage/test_lineage.py:
##########
@@ -118,6 +120,37 @@ def test_lineage_render(self, dag_maker):
assert op1.inlets[0].url == f1s.format(DEFAULT_DATE)
assert op1.outlets[0].url == f1s.format(DEFAULT_DATE)
+ def test_non_attr_outlet(self, dag_maker):
+ class A:
+ pass
+
+ a = A()
+
+ f3s = "/tmp/does_not_exist_3"
+ file3 = File(f3s)
Review Comment:
```suggestion
file3 = File("/tmp/does_not_exist_3")
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]