Skip to content

Commit

Permalink
starknet-gauntlet-oz/test/commands/account.test.ts: update deploy import
Browse files Browse the repository at this point in the history
  • Loading branch information
cfal committed Mar 19, 2024
1 parent 8b1c6b8 commit f2a6532
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { makeProvider } from '@chainlink/starknet-gauntlet'
import deployCommand from '../../src/commands/account/deploy'
import { Deploy } from '../../src/commands/account/deploy'
import { registerExecuteCommand, TIMEOUT, LOCAL_URL } from '@chainlink/starknet-gauntlet/test/utils'
import { accountContractLoader } from '../../src/lib/contracts'
import { Contract } from 'starknet'
Expand All @@ -11,7 +11,7 @@ describe('OZ Account Contract', () => {
it(
'Deployment',
async () => {
const command = await registerExecuteCommand(deployCommand).create({}, [])
const command = await registerExecuteCommand(Deploy).create({}, [])

const report = await command.execute()
expect(report.responses[0].tx.status).toEqual('ACCEPTED')
Expand Down

0 comments on commit f2a6532

Please sign in to comment.