aboutsummaryrefslogtreecommitdiff
path: root/test/T580-thread-search.sh
diff options
context:
space:
mode:
authorTomi Ollila <tomi.ollila@iki.fi>2017-01-05 00:35:23 +0200
committerDavid Bremner <david@tethera.net>2017-01-27 22:02:36 -0400
commitf8d5c9b80ebeac65a93c80ec2a0d3e514f8ea771 (patch)
treee23ca3cd2d406a1603e362f62e52391fe7d28712 /test/T580-thread-search.sh
parent70519319b59ca55d511c5b44ff8c299cbe93c572 (diff)
test: wrap 'wc -l' results in arithmetic evaluation to strip whitespace
Some new unwrapped 'wc -l's have been added since Jani's 60e79e3a9f1c8
Diffstat (limited to 'test/T580-thread-search.sh')
-rwxr-xr-xtest/T580-thread-search.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/T580-thread-search.sh b/test/T580-thread-search.sh
index 6f7106db..512559a3 100755
--- a/test/T580-thread-search.sh
+++ b/test/T580-thread-search.sh
@@ -15,7 +15,7 @@ count=0
success=0
for id in $(notmuch search --output=messages '*'); do
count=$((count +1))
- matches=$(notmuch search --output=threads "$id" | wc -l)
+ matches=$((`notmuch search --output=threads "$id" | wc -l`))
if [ "$matches" = 1 ]; then
success=$((success + 1))
fi