aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Mark Walters <markwalters1009@gmail.com>2012-04-07 17:10:04 +0100
committerGravatar David Bremner <bremner@debian.org>2012-04-07 23:05:18 -0300
commit785c1e497f05cb89365669fea33cfbf9078a4b12 (patch)
treeedeaeaff21cfe775acf8527f79163d7b6c32cadb /test
parentd6fbef4690968c8d0b8e9dc19a903e693cace316 (diff)
cli: move count to the new --exclude=(true|false|flag) naming scheme.
Move the option --no-exclude to the --exclude= scheme. Since there is no way to flag messages only true and false are implemented. Note that, for consistency with other commands, this is implemented as a keyword option rather than a boolean option.
Diffstat (limited to 'test')
-rwxr-xr-xtest/count4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/count b/test/count
index b97fc066..fd387e54 100755
--- a/test/count
+++ b/test/count
@@ -53,9 +53,9 @@ test_expect_equal \
"1" \
"`notmuch count subject:deleted and tag:deleted`"
-test_begin_subtest "count \"deleted\" messages, with --no-exclude"
+test_begin_subtest "count \"deleted\" messages, --exclude=false"
test_expect_equal \
"3" \
- "`notmuch count --no-exclude subject:deleted`"
+ "`notmuch count --exclude=false subject:deleted`"
test_done