Skip to content

Commit 293e359

Browse files
fix: use filepath.Join with separate segments to satisfy gocritic filepathJoin lint rule
Assisted-By: docker-agent
1 parent 67baf03 commit 293e359

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/teamloader/registry_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ func TestResolveToolsetWorkingDir(t *testing.T) {
128128
name: "tilde expands to home dir",
129129
toolsetWorkingDir: "~/projects/app",
130130
agentWorkingDir: "/workspace",
131-
want: filepath.Join(home, "projects/app"),
131+
want: filepath.Join(home, "projects", "app"),
132132
},
133133
{
134134
name: "bare tilde expands to home dir",

0 commit comments

Comments
 (0)