Skip to content

Commit

Permalink
CUMULUS-200 more pr changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lauren Frederick committed Feb 28, 2018
1 parent a90e952 commit 7e9dff8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/integration-tests/bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function verifyRequiredParameter(paramConfig) {
* @returns {boolean} - true if all params are not null
*/
function verifyWorkflowParameters(requiredParams) {
return requiredParams.map((param) => verifyRequiredParameter(param)).includes(false) === false;
return requiredParams.map(verifyRequiredParameter).includes(false) === false;
}

program
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function timeout(waitPeriod) {
* @param {string} workflowName - workflow name
* @returns {Promise.<Object>} template as a JSON object
*/
async function getWorkflowTemplate(stackName, bucketName, workflowName) {
function getWorkflowTemplate(stackName, bucketName, workflowName) {
const key = `${stackName}/workflows/${workflowName}.json`;
return s3().getObject({ Bucket: bucketName, Key: key }).promise()
.then((templateJson) => JSON.parse(templateJson.Body.toString()));
Expand Down

0 comments on commit 7e9dff8

Please sign in to comment.