aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Mark Walters <markwalters1009@gmail.com>2013-10-13 08:39:12 +0100
committerGravatar David Bremner <bremner@debian.org>2013-10-19 22:42:49 -0300
commit99d474c484d89d3436c910f1ac447640c533e811 (patch)
tree9d7bbbaa759c5db19a53bf7d00146201547d7030 /test
parent10596a5cce3c7ed902ec4f0807da4ee283571867 (diff)
emacs: show: use interactive instead of current-prefix-arg
Currently notmuch-show looks at the prefix-arg directly via current-prefix-arg. This changes it to use the interactive specification. One test (for elide-toggle functionality) set the prefix arg directly. Update this test to set the new argument directly.
Diffstat (limited to 'test')
-rwxr-xr-xtest/emacs-show3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/emacs-show b/test/emacs-show
index ae70053a..fb23db4d 100755
--- a/test/emacs-show
+++ b/test/emacs-show
@@ -91,8 +91,7 @@ test_begin_subtest "notmuch-show: elide non-matching messages (w/ prefix arg to
test_emacs '(let ((notmuch-show-only-matching-messages nil))
(notmuch-search "from:lars@seas.harvard.edu and subject:\"Maildir storage\"")
(notmuch-test-wait)
- (let ((current-prefix-arg t))
- (notmuch-search-show-thread))
+ (notmuch-search-show-thread t)
(notmuch-test-wait)
(test-visible-output))'
test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-elide-non-matching-messages-on