From 543182b54abe914c2088fd6b151ee775f195d929 Mon Sep 17 00:00:00 2001 From: Sergio Date: Fri, 13 Dec 2024 16:52:53 +0100 Subject: [PATCH] Fix test --- tests/test_args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_args.py b/tests/test_args.py index 80cc14d0..7791dd19 100644 --- a/tests/test_args.py +++ b/tests/test_args.py @@ -21,7 +21,7 @@ "build --force-unknown-architecture": [call(BUILD_MISSING_PKG_ERROR)], "build --force-unknown-architecture zlib --foo": [call('unrecognized arguments: --foo')], "init --docker-image": [call('unrecognized arguments: --docker-image')], - "builda --force-unknown-architecture zlib" : [call("argument action: invalid choice: 'builda' (choose from 'analytics', 'architecture', 'build', 'clean', 'deps', 'doctor', 'init', 'version')")], + "builda --force-unknown-architecture zlib" : [call("argument action: invalid choice: 'builda' (choose from analytics, architecture, build, clean, deps, doctor, init, version)")], "build --force-unknown-architecture zlib --no-system --always-prefer-system" : [call('argument --always-prefer-system: not allowed with argument --no-system')], "build zlib --architecture foo": ARCHITECTURE_ERROR, "build --force-unknown-architecture zlib --remote-store rsync://test1.local/::rw --write-store rsync://test2.local/::rw ": [call('cannot specify ::rw and --write-store at the same time')],