Skip to content

Commit 714ed81

Browse files
authored
Merge pull request #560 from eoinsha/master
Remove accidental camel case in message
2 parents baf6764 + ba22d4a commit 714ed81

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,10 @@ class ServerlessStepFunctions {
200200

201201
if (this.v3Api) {
202202
const slsRed = chalk.hex('#fd5750');
203-
message += `\n${slsRed('✔')} Serverless StepFunctions OutPuts\n`;
203+
message += `\n${slsRed('✔')} Serverless StepFunctions Outputs\n`;
204204
message += `${chalk.grey('endpoints:')}`;
205205
} else {
206-
message += `${chalk.yellow.underline('Serverless StepFunctions OutPuts')}\n`;
206+
message += `${chalk.yellow.underline('Serverless StepFunctions Outputs')}\n`;
207207
message += `${chalk.yellow('endpoints:')}`;
208208
}
209209

lib/index.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ describe('#index', () => {
326326
},
327327
};
328328
let expectedMessage = '';
329-
expectedMessage += `${chalk.yellow.underline('Serverless StepFunctions OutPuts')}\n`;
329+
expectedMessage += `${chalk.yellow.underline('Serverless StepFunctions Outputs')}\n`;
330330
expectedMessage += `${chalk.yellow('endpoints:')}`;
331331
expectedMessage += '\n POST - https://example.com/foo/bar';
332332
expectedMessage += '\n';
@@ -349,7 +349,7 @@ describe('#index', () => {
349349
},
350350
};
351351
let expectedMessage = '';
352-
expectedMessage += `${chalk.yellow.underline('Serverless StepFunctions OutPuts')}\n`;
352+
expectedMessage += `${chalk.yellow.underline('Serverless StepFunctions Outputs')}\n`;
353353
expectedMessage += `${chalk.yellow('endpoints:')}`;
354354
expectedMessage += '\n POST - https://example.com/foo/bar';
355355
expectedMessage += '\n';
@@ -372,7 +372,7 @@ describe('#index', () => {
372372
},
373373
};
374374
let expectedMessage = '';
375-
expectedMessage += `${chalk.yellow.underline('Serverless StepFunctions OutPuts')}\n`;
375+
expectedMessage += `${chalk.yellow.underline('Serverless StepFunctions Outputs')}\n`;
376376
expectedMessage += `${chalk.yellow('endpoints:')}`;
377377
expectedMessage += '\n POST - https://example.com';
378378
expectedMessage += '\n';

0 commit comments

Comments
 (0)