diff options
-rwxr-xr-x | tests/test-one.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-one.sh b/tests/test-one.sh index caa644fc..50950a59 100755 --- a/tests/test-one.sh +++ b/tests/test-one.sh @@ -22,7 +22,7 @@ export RUST_BACKTRACE=1 unique_fuzzy_file() { local pattern="$1" - local results="$(find ./tests/headers -type f | egrep -i "*$pattern*")" + local results="$(find ./tests/headers -type f | egrep -i "$pattern")" local num_results=$(echo "$results" | wc -l) if [[ -z "$results" ]]; then |