From 7248f0eaa6baefa8fb5439d8323cc7e66df8ce2b Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Wed, 3 Oct 2018 14:10:27 -0700 Subject: [PATCH] coquelicot: Fix upload file functional test When the application state is disabled to start with, the test would fail. Ensure that application is enabled at the start of the test. Reviewed-by: James Valleroy --- functional_tests/features/coquelicot.feature | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functional_tests/features/coquelicot.feature b/functional_tests/features/coquelicot.feature index d129dbe26..909073f07 100644 --- a/functional_tests/features/coquelicot.feature +++ b/functional_tests/features/coquelicot.feature @@ -49,7 +49,8 @@ Scenario: Modify maximum upload size in disabled case Then the coquelicot service should not be running Scenario: Upload a file to coquelicot - Given a sample local file + Given the coquelicot application is enabled + And a sample local file When I modify the coquelicot upload password to whatever123 And I upload the sample local file to coquelicot with password whatever123 And I download the uploaded file from coquelicot