Skip to content

Commit

Permalink
Fix TestWalletDelete-test
Browse files Browse the repository at this point in the history
Change from `delete` to `soft-delete` in the TestWalleteDelete test.
  • Loading branch information
rjan90 committed Apr 7, 2022
1 parent 255ff1a commit 96ee416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/wallet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ func TestWalletDelete(t *testing.T) {
mockApi.EXPECT().WalletDelete(ctx, addr).Return(nil)

//stm: @CLI_WALLET_DELETE_001
err = app.Run([]string{"wallet", "delete", "f01234"})
err = app.Run([]string{"wallet", "soft-delete", "f01234"})
assert.NoError(t, err)
}

Expand Down

0 comments on commit 96ee416

Please sign in to comment.