website: fix cub test script

The `CUB` V2 test script has a trailing echo which pushes the cursor
down one line, making the expected output incorrect. Remove the `echo`
command so the cursor position is as shown.
This commit is contained in:
Tim Culverhouse
2023-12-29 14:51:37 -06:00
parent 0006ca1d58
commit 23cd1d95e9

View File

@ -66,7 +66,6 @@ printf "\033[${cols}G" # move to last column
printf "A" # set pending wrap state
printf "\033[D" # move back one
printf "XYZ"
echo
```
```