From 6cc3db0896a59310bd22e9e339c242fffee35c02 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 7 Jun 2019 17:45:49 +0200 Subject: [PATCH] fix: service_with_dashes is not in create output That is only the case when the service has a database specified, which is not the case for the redis plugin --- tests/service_create.bats | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/service_create.bats b/tests/service_create.bats index e9ac62d..eeacc32 100755 --- a/tests/service_create.bats +++ b/tests/service_create.bats @@ -11,7 +11,6 @@ load test_helper run dokku "$PLUGIN_COMMAND_PREFIX:create" service-with-dashes assert_contains "${lines[*]}" "container created: service-with-dashes" assert_contains "${lines[*]}" "dokku-$PLUGIN_COMMAND_PREFIX-service-with-dashes" - assert_contains "${lines[*]}" "service_with_dashes" dokku --force "$PLUGIN_COMMAND_PREFIX:destroy" service-with-dashes }