diff --git a/src/compose_farm/cli/web.py b/src/compose_farm/cli/web.py index 83dcf15..fc35d84 100644 --- a/src/compose_farm/cli/web.py +++ b/src/compose_farm/cli/web.py @@ -36,12 +36,12 @@ def _compose_farm_banner() -> Text: banner.append("[]", style=windows) banner.append(" ", style=structure) banner.append("[]", style=windows) - banner.append(" \\\n", style=structure) - banner.append(" /__________________\\\n", style=structure) - banner.append(" | ", style=structure) + banner.append(" \\\n", style=structure) + banner.append(" /_________________\\\n", style=structure) + banner.append(" | ", style=structure) banner.append("COMPOSE FARM", style="bold green") banner.append(" |\n", style=structure) - banner.append(" |__________________|", style=structure) + banner.append(" |_________________|", style=structure) return banner diff --git a/tests/test_cli_web.py b/tests/test_cli_web.py index 52c628c..507bcb2 100644 --- a/tests/test_cli_web.py +++ b/tests/test_cli_web.py @@ -19,10 +19,10 @@ def test_compose_farm_banner_is_aligned() -> None: " .-' _ '-.\n" " / |_| \\\n" " /-------------\\\n" - " / [] [] [] \\\n" - " /__________________\\\n" - " | COMPOSE FARM |\n" - " |__________________|" + " / [] [] [] \\\n" + " /_________________\\\n" + " | COMPOSE FARM |\n" + " |_________________|" )