Fix TestWalletDelete-test

Change from `delete` to `soft-delete` in the TestWalleteDelete test.
This commit is contained in:
Rjan 2022-04-07 10:25:49 +02:00
parent 255ff1a4b7
commit 96ee416b96

View File

@ -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)
}