diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2018-11-15 03:55:42 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2018-11-17 00:20:08 +0300 |
commit | 1b7e41964c84b124e91fafec66230c7c678a4145 (patch) | |
tree | c4fef09cb61947f754a033dfa3aa4a4bd139b0ff /test/segments/vcs-git.spec | |
parent | 7bc5366af1abb572238aa24dfe2552aed1fab966 (diff) |
Fix configuration errors in the tests
Diffstat (limited to 'test/segments/vcs-git.spec')
-rwxr-xr-x | test/segments/vcs-git.spec | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/segments/vcs-git.spec b/test/segments/vcs-git.spec index bb51766c..bb2aef5b 100755 --- a/test/segments/vcs-git.spec +++ b/test/segments/vcs-git.spec @@ -491,6 +491,8 @@ function testDetectingUntrackedFilesInCleanSubdirectoryWorks() { } function testBranchNameScriptingVulnerability() { + local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS + POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(vcs) echo "#!/bin/sh\n\necho 'hacked'\n" > evil_script.sh chmod +x evil_script.sh @@ -498,7 +500,7 @@ function testBranchNameScriptingVulnerability() { git add . 2>/dev/null git commit -m "Initial commit" >/dev/null - assertEquals "%K{002} %F{000} %f%F{000} \$(./evil_script.sh) %k%F{002}%f " "$(__p9k_build_left_prompt)" + assertEquals "%K{002} %F{000} %f%F{000} \$(./evil_script.sh) %k%F{002}%f " "$(build_left_prompt)" } source shunit2/shunit2 |