1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s3:tests: fix misplaced '...' for grep pattern in test_net_registry.sh

This commit is contained in:
Michael Adam 2010-09-22 06:00:00 +02:00
parent a52b7e7229
commit a2ea85b68d

View File

@ -144,7 +144,7 @@ test_deletekey()
fi
UNEXPECTED="Keyname = ${SUBKEY}"
printf "%s\n" "$OUTPUT" | 'grep ^Keyname' | grep ${SUBKEY}
printf "%s\n" "$OUTPUT" | grep '^Keyname' | grep ${SUBKEY}
if test "x$?" = "x0" ; then
echo "ERROR: found '$UNEXPECTED' after delete in output"
echo "output:"