From 5d37e5e8b4285c8ae73a6a6da5b92106954a0172 Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Sun, 13 Sep 2020 13:29:25 +0200 Subject: [PATCH] WIP --- tests/commit.bats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/commit.bats b/tests/commit.bats index 5b8da1d..367a014 100644 --- a/tests/commit.bats +++ b/tests/commit.bats @@ -11,8 +11,8 @@ setup() { touch "${test_repository}"/{a,b,c}.txt cd "${test_repository}" git init -q - git add . >/dev/null 2>&1 - git commit -m "Init Repo" >/dev/null 2>&1 + git add . > /dev/null 2>&1 + git commit -m "Init Repo" > /dev/null 2>&1 # Set default INPUT variables export INPUT_REPOSITORY="${BATS_TEST_DIRNAME}/test_repo"