diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2019-02-01 16:19:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-01 16:19:02 +0300 |
commit | bd340d4a88797e760efb28c1180254e7779c990f (patch) | |
tree | 0ea929fbc249e98b3ad3cbfe7c466180fac9447c /test/segments/ssh.spec | |
parent | 6ccdfdf37e47f67683c016426cac89c6a3ac9fb0 (diff) | |
parent | 5737ca6e81a3191cb232085877b5894be0a052ed (diff) |
Merge pull request #966 from ytang/fix-rprompt-icons-cut-off
[Bugfix] Fix icons cut off in RPROMPT segments
Diffstat (limited to 'test/segments/ssh.spec')
-rwxr-xr-x | test/segments/ssh.spec | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/segments/ssh.spec b/test/segments/ssh.spec index 3245231f..40723ebd 100755 --- a/test/segments/ssh.spec +++ b/test/segments/ssh.spec @@ -37,7 +37,7 @@ function testSshSegmentWorksIfOnlySshClientIsSet() { # Load Powerlevel9k source powerlevel9k.zsh-theme - assertEquals "%K{000} %F{003}ssh-icon%f %k%F{000}%f " "$(build_left_prompt)" + assertEquals "%K{000} %F{003}ssh-icon %k%F{000}%f " "$(build_left_prompt)" unset SSH_CLIENT } @@ -54,7 +54,7 @@ function testSshSegmentWorksIfOnlySshTtyIsSet() { # Load Powerlevel9k source powerlevel9k.zsh-theme - assertEquals "%K{000} %F{003}ssh-icon%f %k%F{000}%f " "$(build_left_prompt)" + assertEquals "%K{000} %F{003}ssh-icon %k%F{000}%f " "$(build_left_prompt)" unset SSH_TTY } @@ -71,7 +71,7 @@ function testSshSegmentWorksIfAllNecessaryVariablesAreSet() { # Load Powerlevel9k source powerlevel9k.zsh-theme - assertEquals "%K{000} %F{003}ssh-icon%f %k%F{000}%f " "$(build_left_prompt)" + assertEquals "%K{000} %F{003}ssh-icon %k%F{000}%f " "$(build_left_prompt)" unset SSH_TTY unset SSH_CLIENT |