Skip to content

Commit

Permalink
cmd doesn't like single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Naatan committed Sep 5, 2023
1 parent 150a575 commit 2926b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/activate_int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ func (suite *ActivateIntegrationTestSuite) TestActivate_PythonPath() {
// test that PYTHONPATH is preserved in environment (https://www.pivotaltracker.com/story/show/178458102)
if runtime.GOOS == "windows" {
cp.SendLine("set PYTHONPATH=/custom_pythonpath")
cp.SendLine(`python3 -c 'import os; print(os.environ["PYTHONPATH"]);'`)
cp.SendLine(`python3 -c "import os; print(os.environ['PYTHONPATH']);"`)
} else {
cp.SendLine(`PYTHONPATH=/custom_pythonpath python3 -c 'import os; print(os.environ["PYTHONPATH"]);'`)
}
Expand Down

0 comments on commit 2926b38

Please sign in to comment.