[PATCH 2/2] cli/dump: fix bug in dump header
David Bremner
david at tethera.net
Tue Mar 28 04:09:03 PDT 2017
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 0cbcdc16..e451ac0c 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 f626a19e..a4eab65e 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 <<EOF > EXPECTED
#notmuch-dump batch-tag:2 config,properties,tags
EOF
--
2.11.0
More information about the notmuch
mailing list