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.
This commit is contained in:
anonpenguin23 2025-11-11 05:28:20 +02:00
parent efa26e6ec8
commit 52a726ffd4
No known key found for this signature in database
GPG Key ID: 1CBB1FE35AFBEE30

View File

@ -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))
}