Skip to content

Commit

Permalink
fix: test expectations to match new destructure default
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgobich committed Jun 22, 2024
1 parent 993f1f4 commit 4cfabc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/commands/make_action.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ test.group('MakeAction', (group) => {
)
await assert.fileContains(
'app/actions/store_user_from_form.ts',
`static async handle(_: Params) {`
`static async handle({}: Params) {`
)
})

Expand All @@ -41,7 +41,7 @@ test.group('MakeAction', (group) => {
)
await assert.fileContains(
'app/actions/users/update_user_from_form.ts',
`static async handle(_: Params) {`
`static async handle({}: Params) {`
)
})

Expand Down

0 comments on commit 4cfabc0

Please sign in to comment.