From af62271eed900ed7d26652306585c16689b48524 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 27 Dec 2011 10:31:23 -0500 Subject: [PATCH] tests: Fix metadata test, we removed the spurious = --- tests/t0000-basic.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/t0000-basic.sh b/tests/t0000-basic.sh index 4f4c4eca..2dff8ff9 100755 --- a/tests/t0000-basic.sh +++ b/tests/t0000-basic.sh @@ -166,6 +166,6 @@ echo "ok commit --skip-if-unchanged" $OSTREE commit -b test2 -s "Metadata string" --add-metadata-string=FOO=BAR --add-metadata-string=KITTENS=CUTE --tree=ref=test2 $OSTREE show test2 > test2-commit-text -assert_file_has_content test2-commit-text "FOO=.*BAR" -assert_file_has_content test2-commit-text "KITTENS=.*CUTE" +assert_file_has_content test2-commit-text "'FOO'.*'BAR'" +assert_file_has_content test2-commit-text "'KITTENS'.*'CUTE'" echo "ok metadata commit with strings"