From 4eb3f90fc940e1d402f83b92878de533d7b4eb3c Mon Sep 17 00:00:00 2001 From: filipstrand Date: Thu, 12 Jun 2025 23:28:46 +0200 Subject: [PATCH] Fix cli test --- tests/arg_parser/test_cli_argparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/arg_parser/test_cli_argparser.py b/tests/arg_parser/test_cli_argparser.py index 9a65a53..33a3359 100644 --- a/tests/arg_parser/test_cli_argparser.py +++ b/tests/arg_parser/test_cli_argparser.py @@ -590,7 +590,7 @@ def test_fill_args(mflux_fill_parser, mflux_fill_minimal_argv): assert args.image_path == Path("image.png") assert args.masked_image_path == Path("mask.png") # Default guidance for fill should be None (will be set to 30 in generate_fill.py) - assert args.guidance == pytest.approx(3.5) # default guidance value + assert args.guidance is None # Parser doesn't set default, app does # Test with missing required arguments with patch("sys.argv", ["mflux-fill", "--prompt", "test"]):