From 33adc19682886a61de6463f7dfb73b13f7b092ca Mon Sep 17 00:00:00 2001 From: joshr Date: Mon, 16 Apr 2018 22:24:11 -0400 Subject: [PATCH] fix test to match _abort() output --- tests/test_init.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_init.bats b/tests/test_init.bats index 2a212731..79d3fad5 100644 --- a/tests/test_init.bats +++ b/tests/test_init.bats @@ -71,6 +71,6 @@ function teardown { mkdir "$secrets_dir" run git secret init - [ "$output" = "already inited. abort." ] + [ "$output" = "git-secret: abort: already inited." ] [ "$status" -eq 1 ] }