From a7521102e3435fa1f96251ee1a49abec42660012 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Tue, 16 Dec 2025 22:23:57 +0100 Subject: [PATCH] test: add new commands to TestCommands expected list add `/pubsub/reset` and `/diag/datastore/*` commands that were missing from the expected command list in `TestCommands` --- core/commands/commands_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/commands/commands_test.go b/core/commands/commands_test.go index 23782f209..10ba1e71f 100644 --- a/core/commands/commands_test.go +++ b/core/commands/commands_test.go @@ -76,6 +76,9 @@ func TestCommands(t *testing.T) { "/diag/cmds", "/diag/cmds/clear", "/diag/cmds/set-time", + "/diag/datastore", + "/diag/datastore/count", + "/diag/datastore/get", "/diag/profile", "/diag/sys", "/files", @@ -169,6 +172,7 @@ func TestCommands(t *testing.T) { "/pubsub/ls", "/pubsub/peers", "/pubsub/pub", + "/pubsub/reset", "/pubsub/sub", "/refs", "/refs/local",