From 017d386c6d3779d8a97b9cb092aaaf1def791360 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Apr 2026 09:29:26 +0100 Subject: [PATCH] ax(node): fix test name to follow TestFilename_Function_Good convention TestConvertMinerStats did not follow the AX Principle 10 test naming convention (TestFilename_Function_{Good,Bad,Ugly}). Renamed to TestWorker_ConvertMinerStats_Good to match the required pattern. Co-Authored-By: Charon --- pkg/node/worker_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/node/worker_test.go b/pkg/node/worker_test.go index f190203..39c9acb 100644 --- a/pkg/node/worker_test.go +++ b/pkg/node/worker_test.go @@ -419,7 +419,7 @@ func TestWorker_HandleDeploy_UnknownType(t *testing.T) { } } -func TestConvertMinerStats(t *testing.T) { +func TestWorker_ConvertMinerStats_Good(t *testing.T) { tests := []struct { name string rawStats interface{}