From e931433962768046dd9ccca4420badb12167987f Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Mon, 27 Jul 2026 19:48:25 +0100 Subject: [PATCH] fix(tests): use the renamed node_store namespace in the registry mock The nodestore namespace became xrpl::node_store when develop was merged in, but one mock override still named the old spelling, so it did not match the ServiceRegistry signature it overrides. The sibling mock in TestServiceRegistry.h was already correct. Co-Authored-By: Claude Opus 5 (1M context) --- src/tests/libxrpl/telemetry/MetricsRegistry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/libxrpl/telemetry/MetricsRegistry.cpp b/src/tests/libxrpl/telemetry/MetricsRegistry.cpp index db993d9f95..afe7a4e1cf 100644 --- a/src/tests/libxrpl/telemetry/MetricsRegistry.cpp +++ b/src/tests/libxrpl/telemetry/MetricsRegistry.cpp @@ -557,7 +557,7 @@ public: { throwUnimplemented(); } - NodeStore::Database& + node_store::Database& getNodeStore() override { throwUnimplemented();