From 52a726ffd41a3c56a3e3a44055f24b09c6d810f0 Mon Sep 17 00:00:00 2001 From: anonpenguin23 Date: Tue, 11 Nov 2025 05:28:20 +0200 Subject: [PATCH] fix: update expected port count in TestPortChecker - Adjusted the expected port count in the TestPortChecker test from 22 to 44 to align with the current RequiredPorts configuration. --- pkg/environments/development/checks_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/environments/development/checks_test.go b/pkg/environments/development/checks_test.go index 5bb6f50..739f3c8 100644 --- a/pkg/environments/development/checks_test.go +++ b/pkg/environments/development/checks_test.go @@ -17,7 +17,7 @@ func TestPortChecker(t *testing.T) { } // Check that required port counts match expectations - expectedPortCount := 22 // Based on RequiredPorts + expectedPortCount := 44 // Based on RequiredPorts if len(checker.ports) != expectedPortCount { t.Errorf("Expected %d ports, got %d", expectedPortCount, len(checker.ports)) }