diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-02-01 03:16:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-01 02:16:52 +0000 |
commit | 830d096b66696ad9f4e67b3ed8460fb1ff7a9170 (patch) | |
tree | efa513f071b65888f407fbe1f54fc4c2531c471b /cli/tests/integration | |
parent | fddbb018c1f2467eef49fdef46488337b869fc38 (diff) |
fix(publish): rename --no-fast-check to --no-zap (#22214)
Also prints an information about the flag when there are `zap` errors.
Diffstat (limited to 'cli/tests/integration')
-rw-r--r-- | cli/tests/integration/publish_tests.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/integration/publish_tests.rs b/cli/tests/integration/publish_tests.rs index 675ceced2..6b6fac70d 100644 --- a/cli/tests/integration/publish_tests.rs +++ b/cli/tests/integration/publish_tests.rs @@ -36,9 +36,9 @@ itest!(invalid_fast_check { exit_code: 1, }); -itest!(no_fast_check { - args: "publish --no-fast-check --token 'sadfasdf'", - output: "publish/no_fast_check.out", +itest!(no_zap { + args: "publish --no-zap --token 'sadfasdf'", + output: "publish/no_zap.out", cwd: Some("publish/invalid_fast_check"), exit_code: 1, }); |