Skip to content

Commit 0cc94de

Browse files
committed
fix path test
1 parent 04f3bcb commit 0cc94de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

agent/agent_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ func TestAgent_Session_EnvironmentVariables(t *testing.T) {
343343
"MY_OVERRIDE": "true", // From the agent environment variables option, overrides manifest.
344344
"MY_SESSION_MANIFEST": "false", // From the manifest, overrides session env.
345345
"MY_SESSION": "true", // From the session.
346-
"PATH": scriptBinDir + ":",
346+
"PATH": scriptBinDir + string(filepath.ListSeparator),
347347
} {
348348
t.Run(k, func(t *testing.T) {
349349
out := echoEnv(t, stdin, stdout, k)

0 commit comments

Comments
 (0)