@Test
  public void test_Wallets_Save() throws Exception {
    Wallet wallet = this.getJohnsWallet();
    wallet.Description = "New description to test";

    Wallet saveWallet = this._api.Wallets.update(wallet);

    assertEquals(wallet.Id, saveWallet.Id);
    assertEquals("New description to test", saveWallet.Description);
  }