diff options
| author | David Bremner <david@tethera.net> | 2017-03-28 08:09:03 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-04-01 09:09:33 -0300 |
| commit | 1f3c7916f82774cacbfbb0fbc9d0e0aaae9399b3 (patch) | |
| tree | d01ba646c1792b123fd9227479829b0473ab3d5d | |
| parent | 704bd3d8a249b4041aa6a4204032f2b336f374e8 (diff) | |
cli/dump: fix bug in dump header
Fix copy paste error.
| -rw-r--r-- | notmuch-dump.c | 2 | ||||
| -rwxr-xr-x | test/T240-dump-restore.sh | 1 |
2 files changed, 1 insertions, 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 <<EOF > EXPECTED #notmuch-dump batch-tag:2 config,properties,tags EOF |
