]> git.notmuchmail.org Git - notmuch/commitdiff
test/emacs-large-search-buffer: correct typo (EXPEXTED -> EXPECTED)
authorPieter Praet <pieter@praet.org>
Mon, 23 Jan 2012 04:26:10 +0000 (05:26 +0100)
committerDavid Bremner <bremner@debian.org>
Mon, 23 Jan 2012 11:38:32 +0000 (07:38 -0400)
introduced in commit 3b24b396

test/emacs-large-search-buffer

index 6095e9da85bb9399e9b2568e1a87d0da08e94626..4351e33eebac445df95de4120f40fe25ff803ee0 100755 (executable)
@@ -19,25 +19,25 @@ done
 notmuch new > /dev/null
 
 test_begin_subtest "Ensure that emacs doesn't drop results"
-notmuch search '*' > EXPEXTED
-sed -i -e 's/^thread:[0-9a-f]*  //' -e 's/;//' -e 's/xx*/[BLOB]/' EXPEXTED
-echo 'End of search results.' >> EXPEXTED
+notmuch search '*' > EXPECTED
+sed -i -e 's/^thread:[0-9a-f]*  //' -e 's/;//' -e 's/xx*/[BLOB]/' EXPECTED
+echo 'End of search results.' >> EXPECTED
 
 test_emacs '(notmuch-search "*")
            (notmuch-test-wait)
            (test-output)'
 sed -i -e s',  *, ,g' -e 's/xxx*/[BLOB]/g' OUTPUT
-test_expect_equal_file OUTPUT EXPEXTED
+test_expect_equal_file OUTPUT EXPECTED
 
 test_begin_subtest "Ensure that emacs doesn't drop error messages"
 test_emacs '(notmuch-search "--this-option-does-not-exist")
            (notmuch-test-wait)
            (test-output)'
-cat <<EOF >EXPEXTED
+cat <<EOF >EXPECTED
 Error: Unexpected output from notmuch search:
 Unrecognized option: --this-option-does-not-exist
 End of search results. (process returned 1)
 EOF
-test_expect_equal_file OUTPUT EXPEXTED
+test_expect_equal_file OUTPUT EXPECTED
 
 test_done