From 0bc67c8b01ca1cd3d962cf072c73589cc092735d Mon Sep 17 00:00:00 2001 From: Vito <5780819+Tapanito@users.noreply.github.com> Date: Thu, 12 Feb 2026 16:10:37 +0100 Subject: [PATCH] formatting --- src/test/app/Vault_test.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/test/app/Vault_test.cpp b/src/test/app/Vault_test.cpp index e123896a13..337c8c211d 100644 --- a/src/test/app/Vault_test.cpp +++ b/src/test/app/Vault_test.cpp @@ -5017,7 +5017,7 @@ class Vault_test : public beast::unit_test::suite }; auto const all = testable_amendments(); - + // Test VaultDelete with fixLendingProtocolV1_1 disabled // Transaction fails if the data field is provided test( @@ -5025,17 +5025,16 @@ class Vault_test : public beast::unit_test::suite all - fixLendingProtocolV1_1, std::string(maxDataPayloadLength, 'A'), temDISABLED); - + // Transaction fails if the data field is too large test( "fixLendingProtocolV1_1 enabled data too large", all, std::string(maxDataPayloadLength + 1, 'A'), temMALFORMED); - + // Transaction fails if the data field is set, but is empty test("fixLendingProtocolV1_1 enabled data empty", all, std::string(0, 'A'), temMALFORMED); - test("fixLendingProtocolV1_1 enabled data valid", all, std::string(maxDataPayloadLength, 'A'), tesSUCCESS); }