Remove redundant LlamaExecutable field from instance configuration in tests

This commit is contained in:
2025-09-18 20:29:04 +02:00
parent 5e2d237887
commit 2a20817078

View File

@@ -24,7 +24,6 @@ func TestNewInstanceManager(t *testing.T) {
PortRange: [2]int{8000, 9000}, PortRange: [2]int{8000, 9000},
LogsDir: "/tmp/test", LogsDir: "/tmp/test",
MaxInstances: 5, MaxInstances: 5,
LlamaExecutable: "llama-server",
DefaultAutoRestart: true, DefaultAutoRestart: true,
DefaultMaxRestarts: 3, DefaultMaxRestarts: 3,
DefaultRestartDelay: 5, DefaultRestartDelay: 5,
@@ -191,7 +190,6 @@ func createTestManager() manager.InstanceManager {
PortRange: [2]int{8000, 9000}, PortRange: [2]int{8000, 9000},
LogsDir: "/tmp/test", LogsDir: "/tmp/test",
MaxInstances: 10, MaxInstances: 10,
LlamaExecutable: "llama-server",
DefaultAutoRestart: true, DefaultAutoRestart: true,
DefaultMaxRestarts: 3, DefaultMaxRestarts: 3,
DefaultRestartDelay: 5, DefaultRestartDelay: 5,