1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-29 09:34:03 +08:00

test-lib: fix test_str_contains

License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
This commit is contained in:
Christian Couder
2016-01-14 21:20:51 +01:00
parent a28e02be96
commit 7e8052ef32

View File

@ -321,7 +321,7 @@ test_should_contain() {
test_str_contains() {
find=$1
shift
echo "$@" | grep "$find" >/dev/null
echo "$@" | grep "\b$find\b" >/dev/null
}
disk_usage() {