From 3053f48bddbec118b0418e02b7a95baa912558a1 Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Sat, 10 Apr 2021 17:13:22 +0200 Subject: [PATCH] Update Comments --- tests/git-auto-commit.bats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/git-auto-commit.bats b/tests/git-auto-commit.bats index 41239ee..1dae00e 100644 --- a/tests/git-auto-commit.bats +++ b/tests/git-auto-commit.bats @@ -402,7 +402,7 @@ git_auto_commit() { assert_equal $current_sha $remote_sha } -@test "It does not expand wildcard glob when using INPUT_PATTERN in git-status and git-add" { +@test "It does not expand wildcard glob when using INPUT_PATTERN and INPUT_DISABLE_GLOBBING in git-status and git-add" { # Create additional files in a nested directory structure echo "Create Additional files"; @@ -432,7 +432,7 @@ git_auto_commit() { assert_line "INPUT_FILE_PATTERN: *.py" assert_line "::debug::Push commit to remote branch master" - # Assert that py files have not been added. + # Assert that the updated py file has been commited. run git status refute_output --partial 'nested/new-file-b.py' }