chore: Address code review comments

This commit is contained in:
TimothyBanks
2026-09-10 13:07:34 -04:00
parent 09c4e35c51
commit d6757ce1a5
4 changed files with 4 additions and 4 deletions

View File

@@ -41,8 +41,7 @@ struct BytecodeRun : testing::Test
Account const alice{"alice"};
Account const carol{"carol"};
void
SetUp() override
BytecodeRun()
{
createAccounts(env, XRP(5'000), alice, carol);
}

View File

@@ -49,6 +49,7 @@ struct DataOnReject : testing::Test
void
SetUp() override
{
testing::Test::SetUp();
env.createAccount(alice, XRP(5'000));
auto const wasm = assembleWat(kWritesThenRejects);

View File

@@ -31,8 +31,7 @@ struct FinishFailures : testing::Test
Account const alice{"alice"};
Account const carol{"carol"};
void
SetUp() override
FinishFailures()
{
createAccounts(env, XRP(5'000), alice, carol);
}

View File

@@ -33,6 +33,7 @@ struct GasFees : testing::Test
void
SetUp() override
{
testing::Test::SetUp();
createAccounts(env, XRP(5'000), alice, carol);
auto const wasm = assembleWat(kReadsLedgerSqn);