Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/commands/runtime/activation/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const statusStrings = ['success', 'app error', `dev error`, 'sys error']
class ActivationList extends RuntimeBaseCommand {
async run () {
const { args, flags } = this.parse(ActivationList)
const id = args.activation_name
const id = args.action_name
try {
const options = {}
if (id) {
Expand Down Expand Up @@ -201,7 +201,7 @@ class ActivationList extends RuntimeBaseCommand {

ActivationList.args = [
{
name: 'activation_name'
name: 'action_name'
}
]

Expand Down
2 changes: 1 addition & 1 deletion test/commands/runtime/activation/list.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ test('flags', async () => {
test('args', async () => {
const logName = TheCommand.args[0]
expect(logName.name).toBeDefined()
expect(logName.name).toEqual('activation_name')
expect(logName.name).toEqual('action_name')
})

describe('instance methods', () => {
Expand Down