From f9e20bf63e5907fa689b51af7d954f31d394a269 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Tue, 1 Jul 2025 10:47:37 -0400 Subject: [PATCH] Fix tests --- tests/cli/test_cli.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/cli/test_cli.py b/tests/cli/test_cli.py index a199a24c1..788851ceb 100644 --- a/tests/cli/test_cli.py +++ b/tests/cli/test_cli.py @@ -209,9 +209,9 @@ class TestDevCommand: assert result.exit_code == 0 mock_run.assert_called_once() - # Check dependencies were passed correctly + # Check dependencies were passed correctly with no_banner=True mock_build_uv.assert_called_once_with( - str(temp_python_file), None, ["extra_dep"] + str(temp_python_file), None, ["extra_dep"], no_banner=True ) def test_dev_command_with_ui_port(self, temp_python_file): @@ -468,4 +468,5 @@ class TestRunCommand: port=None, log_level=None, server_args=["--config", "config.json"], + show_banner=True, )