]> git.notmuchmail.org Git - notmuch/blobdiff - test/missing-headers
test: basic: drop 'ensure all available tests are run'
[notmuch] / test / missing-headers
index 43e861bc69dffb8ec86036d5207738eb3ec12b54..cb38301c255a1d0b8dd661636499930862fd5b7f 100755 (executable)
@@ -95,7 +95,7 @@ Body
 
 test_begin_subtest "Show: json"
 output=$(notmuch show --format=json '*' | notmuch_json_show_sanitize)
-test_expect_equal_json "$output" '
+expected=$(notmuch_json_show_sanitize <<EOF
 [
     [
         [
@@ -156,7 +156,9 @@ test_expect_equal_json "$output" '
             []
         ]
     ]
-]'
-
+]
+EOF
+)
+test_expect_equal_json "$output" "$expected"
 
 test_done