]> git.notmuchmail.org Git - notmuch/commitdiff
cli/dump: fix bug in dump header
authorDavid Bremner <david@tethera.net>
Tue, 28 Mar 2017 11:09:03 +0000 (08:09 -0300)
committerDavid Bremner <david@tethera.net>
Sat, 1 Apr 2017 12:09:33 +0000 (09:09 -0300)
Fix copy paste error.

notmuch-dump.c
test/T240-dump-restore.sh

index e7965ceab1c55fb9347b6657df45fa62330b4839..0bb946f8f3378babd16d261d2e1106e068150db5 100644 (file)
@@ -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");
 }
index 7ea35953aecd3c23cba72b714d0bc2aaf819b9a9..181def34566beb01677cfb83e7350f035fdaa32f 100755 (executable)
@@ -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