From c6be4bdb2bb90e35872b236ceed4930ae3d474e8 Mon Sep 17 00:00:00 2001 From: TimothyBanks Date: Fri, 25 Sep 2026 11:02:25 -0400 Subject: [PATCH] fix: Test names should be snake case --- src/tests/libxrpl/tx/wasm/host_functions/TxField.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/libxrpl/tx/wasm/host_functions/TxField.cpp b/src/tests/libxrpl/tx/wasm/host_functions/TxField.cpp index ad6120e7b5..415c89e496 100644 --- a/src/tests/libxrpl/tx/wasm/host_functions/TxField.cpp +++ b/src/tests/libxrpl/tx/wasm/host_functions/TxField.cpp @@ -185,7 +185,7 @@ bytecodeTx(Account const& acct, std::size_t size) } // namespace -TEST_F(TxFieldImpl, AnOversizedBlobIsRefusedWhereItIsRead) +TEST_F(TxFieldImpl, an_oversized_blob_is_refused_where_it_is_read) { auto const owner = Account{"owner"}; ledger.createAccount(owner, XRP(1000)); @@ -196,7 +196,7 @@ TEST_F(TxFieldImpl, AnOversizedBlobIsRefusedWhereItIsRead) HostFunctionError::DataFieldTooLarge); } -TEST_F(TxFieldImpl, ABlobAtTheCapIsStillRead) +TEST_F(TxFieldImpl, a_blob_at_the_cap_is_still_read) { auto const owner = Account{"owner"}; ledger.createAccount(owner, XRP(1000));