Skip to content

Commit

Permalink
test: prefix NVIM_APPNAME uuid with "nvim-"
Browse files Browse the repository at this point in the history
  • Loading branch information
rktjmp committed Aug 15, 2024
1 parent 127c057 commit d96b854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
for t in ${tests[@]};
do
echo "SUITE START $t..."
NVIM_APPNAME=$(uuidgen) $nvim_bin +"set columns=1000" --headless -l "${t}"
NVIM_APPNAME="nvim-$(uuidgen)" $nvim_bin +"set columns=1000" --headless -l "${t}"
if [ $? -ne 0 ]; then
echo "SUITE FAILED $t"
failed_count=1
Expand Down

0 comments on commit d96b854

Please sign in to comment.