Skip to content

Commit c30a1c3

Browse files
committed
fix path test
1 parent 7f438cc commit c30a1c3

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
@@ -349,7 +349,7 @@ func TestAgent_Session_EnvironmentVariables(t *testing.T) {
349349
"MY_OVERRIDE": "true", // From the agent environment variables option, overrides manifest.
350350
"MY_SESSION_MANIFEST": "false", // From the manifest, overrides session env.
351351
"MY_SESSION": "true", // From the session.
352-
"PATH": scriptBinDir + ":",
352+
"PATH": scriptBinDir + string(filepath.ListSeparator),
353353
} {
354354
t.Run(k, func(t *testing.T) {
355355
echoEnv(t, stdin, k)

0 commit comments

Comments
 (0)