diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-03-08 17:49:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-08 22:49:15 +0000 |
commit | 119744c2856526479907039ced66adb8d25cb69d (patch) | |
tree | 6a862912a39c758624774f8b89e70daa12a49fbf /tests/integration/publish_tests.rs | |
parent | 071b3da0209018d100a7ea1ce730f520d9bbd241 (diff) |
fix(publish): suggest using `--allow-dirty` on uncommitted changes (#22810)
Diffstat (limited to 'tests/integration/publish_tests.rs')
-rw-r--r-- | tests/integration/publish_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/publish_tests.rs b/tests/integration/publish_tests.rs index 49c531e7d..a590e02ad 100644 --- a/tests/integration/publish_tests.rs +++ b/tests/integration/publish_tests.rs @@ -630,7 +630,7 @@ fn allow_dirty() { .run(); output.assert_exit_code(1); let output = output.combined_output(); - assert_contains!(output, "Aborting due to uncomitted changes"); + assert_contains!(output, "Aborting due to uncommitted changes. Check in source code or run with --allow-dirty"); let output = context .new_command() |