From 1f3c7916f82774cacbfbb0fbc9d0e0aaae9399b3 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Tue, 28 Mar 2017 08:09:03 -0300 Subject: [PATCH] cli/dump: fix bug in dump header Fix copy paste error. --- notmuch-dump.c | 2 +- test/T240-dump-restore.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/notmuch-dump.c b/notmuch-dump.c index e7965cea..0bb946f8 100644 --- a/notmuch-dump.c +++ b/notmuch-dump.c @@ -84,7 +84,7 @@ print_dump_header (gzFile output, int output_format, int include) sep = ","; } if (include & DUMP_INCLUDE_TAGS) { - gzprintf (output, "%sproperties", sep); + gzprintf (output, "%stags", sep); } gzputs (output, "\n"); } diff --git a/test/T240-dump-restore.sh b/test/T240-dump-restore.sh index 7ea35953..181def34 100755 --- a/test/T240-dump-restore.sh +++ b/test/T240-dump-restore.sh @@ -4,7 +4,6 @@ test_description="\"notmuch dump\" and \"notmuch restore\"" NOTMUCH_NEW > /dev/null test_begin_subtest "dump header" -test_subtest_known_broken cat < EXPECTED #notmuch-dump batch-tag:2 config,properties,tags EOF -- 2.43.0