From 11330596b1a66908f43af70a65356bd937016afe Mon Sep 17 00:00:00 2001 From: Nils Winkler Date: Wed, 10 May 2017 11:12:06 +0200 Subject: [PATCH] Simplified describe tests --- test/lib/helpers.bats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/lib/helpers.bats b/test/lib/helpers.bats index 357bfa88..bfe041f6 100644 --- a/test/lib/helpers.bats +++ b/test/lib/helpers.bats @@ -109,7 +109,7 @@ function __setup_plugin_tests { @test "describe the nvm plugin without enabling it" { __setup_plugin_tests - _bash-it-describe "plugins" "a" "plugin" "Plugin" | grep "nvm" | grep "\[ \]" + _bash-it-plugins | grep "nvm" | grep "\[ \]" } @test "describe the nvm plugin after enabling it" { @@ -119,5 +119,5 @@ function __setup_plugin_tests { [ "${lines[0]}" == 'nvm enabled with priority 225.' ] [ -L "$BASH_IT/plugins/enabled/225---nvm.plugin.bash" ] - _bash-it-describe "plugins" "a" "plugin" "Plugin" | grep "nvm" | grep "\[x\]" + _bash-it-plugins | grep "nvm" | grep "\[x\]" }