tests: parameter-to-global-alias: Use alias name less likely to clash

This commit is contained in:
m0viefreak 2020-08-11 22:05:17 +02:00 committed by Matthew Martin
parent f8cd0b55b3
commit 0b5b3dcc0c

View file

@ -28,12 +28,12 @@
# vim: ft=zsh sw=2 ts=2 et
# -------------------------------------------------------------------------------------------------
if type x >/dev/null; then
skip_test="Test is written on the assumption that 'x' is not a valid command name, but that assumption does not hold"
if type global_alias >/dev/null; then
skip_test="Test is written on the assumption that 'global_alias' is not a valid command name, but that assumption does not hold"
return 0
fi
alias -g x=y
local s=x
alias -g global_alias=y
local s=global_alias
BUFFER=$'$s'