Skip to content

Commit

Permalink
Merge pull request #2206 from ipfs/improve-test-str-contains
Browse files Browse the repository at this point in the history
test-lib: improve on previous fix
  • Loading branch information
jbenet committed Jan 15, 2016
2 parents ab73ddb + 1446209 commit a8487ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sharness/lib/test-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit a8487ee

Please sign in to comment.