From: Dmitry Kurochkin Date: Sun, 29 Jan 2012 03:36:03 +0000 (+0400) Subject: test: remove explicit loading of elisp tests in emacs-address-cleaning X-Git-Tag: debian/0.12_rc1-1~98 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=8d26b8eaac6dc7eebc2658587b2656555244f4b3 test: remove explicit loading of elisp tests in emacs-address-cleaning It is no longer needed, since elisp tests files are auto loaded now. --- diff --git a/test/emacs-address-cleaning b/test/emacs-address-cleaning index 51018fe5..6ddde5c6 100755 --- a/test/emacs-address-cleaning +++ b/test/emacs-address-cleaning @@ -4,15 +4,12 @@ test_description="emacs address cleaning" . test-lib.sh test_begin_subtest "notmuch-test-address-clean part 1" -test_emacs_expect_t \ - '(load "emacs-address-cleaning.el") (notmuch-test-address-cleaning-1)' +test_emacs_expect_t '(notmuch-test-address-cleaning-1)' test_begin_subtest "notmuch-test-address-clean part 2" -test_emacs_expect_t \ - '(load "emacs-address-cleaning.el") (notmuch-test-address-cleaning-2)' +test_emacs_expect_t '(notmuch-test-address-cleaning-2)' test_begin_subtest "notmuch-test-address-clean part 3" -test_emacs_expect_t \ - '(load "emacs-address-cleaning.el") (notmuch-test-address-cleaning-3)' +test_emacs_expect_t '(notmuch-test-address-cleaning-3)' test_done