diff options
Diffstat (limited to 'src/commands/dev')
-rw-r--r-- | src/commands/dev/test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/dev/test.ts b/src/commands/dev/test.ts index 104861f..c77d7ec 100644 --- a/src/commands/dev/test.ts +++ b/src/commands/dev/test.ts @@ -103,7 +103,7 @@ export default class TestCommand extends BushCommand { const footer = { text: 'This is a footer', iconURL: _avatar }; const fields = []; for (let i = 0; i < 25; i++) { - fields.push({ name: 'Field ' + i, value: 'Field Value ' + i }); + fields.push({ name: `Field ${i}`, value: `Field Value ${i}` }); } const c = util.colors; const o = { description, author, footer, fields }!; |