test-auto-summary.sh properly quote arguments to assert_streq

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
Giuseppe Scrivano 2015-04-24 15:42:28 +02:00
parent 9c449624f2
commit 8ab2e60edc
1 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ echo hello2 > test/a
${CMD_PREFIX} $OSTREE commit -b test -s "Another commit" test ${CMD_PREFIX} $OSTREE commit -b test -s "Another commit" test
echo "ok commit 2" echo "ok commit 2"
assert_streq $OLD_MD5 $(md5sum repo/summary) assert_streq "$OLD_MD5" "$(md5sum repo/summary)"
${CMD_PREFIX} $OSTREE --repo=repo config set core.commit-update-summary true ${CMD_PREFIX} $OSTREE --repo=repo config set core.commit-update-summary true
@ -52,4 +52,4 @@ echo hello3 > test/a
${CMD_PREFIX} $OSTREE commit -b test -s "Another commit..." test ${CMD_PREFIX} $OSTREE commit -b test -s "Another commit..." test
echo "ok commit 3" echo "ok commit 3"
assert_not_streq $OLD_MD5 $(md5sum repo/summary) assert_not_streq "$OLD_MD5" "$(md5sum repo/summary)"