This is an automated email from the ASF dual-hosted git repository.
gopidesu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 96b3610a562 Typo fix in docker-tests print (#53879)
96b3610a562 is described below
commit 96b3610a56256c5c87cc65380be7e895ed4bdd50
Author: GPK <[email protected]>
AuthorDate: Tue Jul 29 13:22:07 2025 +0100
Typo fix in docker-tests print (#53879)
---
docker-tests/tests/docker_tests/test_docker_compose_quick_start.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docker-tests/tests/docker_tests/test_docker_compose_quick_start.py
b/docker-tests/tests/docker_tests/test_docker_compose_quick_start.py
index 6241e49d158..aad24d8bd3c 100644
--- a/docker-tests/tests/docker_tests/test_docker_compose_quick_start.py
+++ b/docker-tests/tests/docker_tests/test_docker_compose_quick_start.py
@@ -86,13 +86,13 @@ def
test_trigger_dag_and_wait_for_result(default_docker_image, tmp_path_factory,
copyfile(compose_file_path, tmp_dir / "docker-compose.yaml")
subfolders = ("dags", "logs", "plugins", "config")
- console.print(f"[yellow]Cleaning subfolders:[/ {subfolders}")
+ console.print(f"[yellow]Creating subfolders:{subfolders}[/]")
# Create required directories for docker compose quick start howto
for subdir in subfolders:
(tmp_dir / subdir).mkdir()
dot_env_file = tmp_dir / ".env"
- console.print(f"[yellow]Creating .env file :[/ {dot_env_file}")
+ console.print(f"[yellow]Creating .env file :{dot_env_file}[/]")
dot_env_file.write_text(f"AIRFLOW_UID={os.getuid()}\n")
console.print(" .env file content ".center(72, "="))
console.print(dot_env_file.read_text())