mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
cli/dump: fix bug in dump header
Fix copy paste error.
This commit is contained in:
parent
704bd3d8a2
commit
1f3c7916f8
2 changed files with 1 additions and 2 deletions
|
@ -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");
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue