Commit a8487eec authored by Juan Benet's avatar Juan Benet

Merge pull request #2206 from ipfs/improve-test-str-contains

test-lib: improve on previous fix
parents ab73ddbf 14462092
......@@ -321,7 +321,7 @@ test_should_contain() {
test_str_contains() {
find=$1
shift
echo "$@" | grep "\b$find\b" >/dev/null
echo "$@" | egrep "\b$find\b" >/dev/null
}
disk_usage() {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment