diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2016-02-26 19:29:00 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2016-02-26 19:29:00 +0300 |
commit | fa33902c0099c1cb31580ae50ff9d6078c6b7a23 (patch) | |
tree | c1380d411361db7e77fe1d1d4548a42614495f14 /test | |
parent | b3fae488934fef856805a9012f08fb4146764aa6 (diff) |
Fix test
Diffstat (limited to 'test')
-rwxr-xr-x | test/segments/vcs.spec | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/segments/vcs.spec b/test/segments/vcs.spec index 862067b7..c33b564d 100755 --- a/test/segments/vcs.spec +++ b/test/segments/vcs.spec @@ -40,10 +40,14 @@ function testColorOverridingForModifiedStateWorks() { mkdir -p $FOLDER cd $FOLDER git init 1>/dev/null + git config user.email "test@powerlevel9k.theme" + git config user.name "Testing Tester" touch testfile git add testfile + git commit -m "test" 1>/dev/null + echo "test" > testfile - assertEquals "%K{yellow} %F{red} master ✚ %k%F{yellow}%f " "$(build_left_prompt)" + assertEquals "%K{yellow} %F{red} master ● %k%F{yellow}%f " "$(build_left_prompt)" cd - rm -fr /tmp/powerlevel9k-test |