From 28055fdb964f1bf5bf0e8da8768efcea78f737f0 Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Thu, 20 Aug 2026 13:55:37 +0100 Subject: [PATCH] fix(test): follow TempDir out of beast:: in the two sync-diagnostics cases Companion to the same fix on phase-9. These two uses exist only on this branch, so they survived the merge-forward: develop moved TempDir from beast:: to xrpl:: and deleted xrpl/beast/utility/temp_dir.h. Database.cpp already includes xrpl/basics/FileUtilities.h and already spells TempDir unqualified at line 288, so only the qualifier was wrong. --- src/tests/libxrpl/nodestore/Database.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/libxrpl/nodestore/Database.cpp b/src/tests/libxrpl/nodestore/Database.cpp index e419494499..2cf0e783e8 100644 --- a/src/tests/libxrpl/nodestore/Database.cpp +++ b/src/tests/libxrpl/nodestore/Database.cpp @@ -490,7 +490,7 @@ TEST(NodeStoreDatabase, import_accumulates_store_duration) DummyScheduler scheduler; beast::Journal const journal(TestSink::instance()); - beast::TempDir const srcDir; + TempDir const srcDir; Section srcParams; srcParams.set("type", "nudb"); srcParams.set("path", srcDir.path()); @@ -504,7 +504,7 @@ TEST(NodeStoreDatabase, import_accumulates_store_duration) storeBatch(*src, batch); ASSERT_EQ(src->getStoreCount(), batch.size()); - beast::TempDir const destDir; + TempDir const destDir; Section destParams; destParams.set("type", "nudb"); destParams.set("path", destDir.path());