summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/test-one.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-one.sh b/tests/test-one.sh
index 3f9ce457..caa644fc 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 -iname "*$pattern*")"
+ local results="$(find ./tests/headers -type f | egrep -i "*$pattern*")"
local num_results=$(echo "$results" | wc -l)
if [[ -z "$results" ]]; then