diff options
author | Michael Adam <obnox@samba.org> | 2010-09-22 06:00:00 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-09-22 06:30:01 +0200 |
commit | a2ea85b68d86ed3651f00626b837cfa8184cc21b (patch) | |
tree | cfc064b6d4070005af3dcc80136c5faf75121050 | |
parent | a52b7e7229174500c8b8d5e52206e68749b99e2b (diff) | |
download | samba-a2ea85b68d86ed3651f00626b837cfa8184cc21b.tar.gz samba-a2ea85b68d86ed3651f00626b837cfa8184cc21b.tar.bz2 samba-a2ea85b68d86ed3651f00626b837cfa8184cc21b.zip |
s3:tests: fix misplaced '...' for grep pattern in test_net_registry.sh
-rwxr-xr-x | source3/script/tests/test_net_registry.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/tests/test_net_registry.sh b/source3/script/tests/test_net_registry.sh index 241926358e..0d5916ebba 100755 --- a/source3/script/tests/test_net_registry.sh +++ b/source3/script/tests/test_net_registry.sh @@ -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:" |