Skip to content

Commit 5cd9d18

Browse files
committed
fixes a dumb mistake
1 parent 597c3e3 commit 5cd9d18

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/app/Vault_test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5404,7 +5404,8 @@ class Vault_test : public beast::unit_test::suite
54045404
auto [tx, keylet] = vault.create({.owner = owner, .asset = xrpAsset});
54055405
env(delTx, ter(tesSUCCESS), THISLINE);
54065406
env.close();
5407-
5407+
// Recreate the transaction as the vault keylet changed
5408+
auto delTx = vault.del({.owner = owner, .id = keylet.key});
54085409
delTx[sfMemoData] = strHex(std::string(maxDataPayloadLength, 'A'));
54095410
env(delTx, ter(tesSUCCESS), THISLINE);
54105411
env.close();

0 commit comments

Comments
 (0)