uranusjr commented on code in PR #37005:
URL: https://github.com/apache/airflow/pull/37005#discussion_r1500438564


##########
tests/datasets/test_dataset.py:
##########
@@ -45,18 +45,31 @@ def clear_datasets():
         pytest.param("", id="empty"),
         pytest.param("\n\t", id="whitespace"),
         pytest.param("a" * 3001, id="too_long"),
-        pytest.param("airflow:" * 3001, id="reserved_scheme"),
-        pytest.param("😊" * 3001, id="non-ascii"),
+        pytest.param("airflow://xcom/dag/task", id="reserved_scheme"),
+        pytest.param("😊", id="non-ascii"),
+        pytest.param("ftp://user@localhost/foo.txt";, id="has-auth"),

Review Comment:
   I don’t want this to be stored into the database and affect URI identity, 
but silently stripping it also feels a bit weird. Is it still comparably better 
to you?



-- 
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]

Reply via email to