Commit 7e8052ef authored by Christian Couder's avatar Christian Couder

test-lib: fix test_str_contains

License: MIT
Signed-off-by: default avatarChristian Couder <chriscool@tuxfamily.org>
parent a28e02be
......@@ -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() {
......
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