Update wording in tests

This commit is contained in:
Stefan Zweifel 2022-02-27 07:51:21 +01:00
parent 3bdf67b8b7
commit 9fe25d817b
1 changed files with 2 additions and 2 deletions

View File

@ -639,7 +639,7 @@ git_auto_commit() {
assert_line --partial "origin/not-existend-remote-branch"
}
@test "it creates new local branch and pushed branch to remote even if the remote branch already exists" {
@test "it creates new local branch and pushes branch to remote even if the remote branch already exists" {
# Create `existing-remote-branch` on remote with changes the local repository does not yet have
cd $FAKE_TEMP_LOCAL_REPOSITORY;
@ -784,7 +784,7 @@ git_auto_commit() {
assert_line "INPUT_BRANCH value: new-branch"
assert_line --partial "::debug::Push commit to remote branch new-branch"
# Assert that branch "new-branch" was not updated on remote
# Assert that branch "new-branch" was updated on remote
current_sha="$(git rev-parse --verify --short new-branch)"
remote_sha="$(git rev-parse --verify --short origin/new-branch)"