style: Fix include (#1687)

Fixes #1686
This commit is contained in:
Sergey Kuznetsov
2024-10-16 11:39:23 +01:00
committed by Alex Kremer
parent 6c3c761dd1
commit 2951b4aaa0
3 changed files with 3 additions and 2 deletions

View File

@@ -2960,7 +2960,7 @@ TEST_F(RPCLedgerEntryDeathTest, RangeNotAvailable)
));
checkCalled = true;
EXPECT_DEATH(
{ [[maybe_unused]] auto _ = handler.process(req, Context{yield}); }, "Ledger range must be available"
{ [[maybe_unused]] auto _unused2 = handler.process(req, Context{yield}); }, "Ledger range must be available"
);
});