Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit 25ece07

Browse files
committed
test: fix tests
1 parent 353bd32 commit 25ece07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/config/config_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ func TestLoad(t *testing.T) {
6161
t.Errorf("Expected TLSEnabled false, got %v", cfg.TLSEnabled)
6262
}
6363

64-
if cfg.ComposeBasePath != "/opt/compose-projects" {
65-
t.Errorf("Expected ComposeBasePath '/opt/compose-projects', got '%s'", cfg.ComposeBasePath)
64+
if cfg.ComposeBasePath != "data/agent/compose-projects" {
65+
t.Errorf("Expected ComposeBasePath 'data/agent/compose-projects', got '%s'", cfg.ComposeBasePath)
6666
}
6767

6868
if cfg.AgentID == "" {

0 commit comments

Comments
 (0)