ci: Remove inner quotes from shell variable

shellcheck emits:

 SC2027: The surrounding quotes actually unquote this. Remove or escape them.

Remove inner quotes from shell variable so the feature is correctly printed.
This commit is contained in:
Tobin C. Harding 2022-07-22 11:26:37 +10:00
parent 58ede47ef1
commit 8eb6c23eaf
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ fi
# Test each feature
for feature in ${FEATURES}
do
echo "********* Testing "$feature" *************"
echo "********* Testing $feature *************"
cargo test --verbose --features="$feature"
done