Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 9BB96431FAE for ; Sat, 28 Jan 2012 19:37:16 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id a0JG0f7IHrxM for ; Sat, 28 Jan 2012 19:37:16 -0800 (PST) Received: from mail-bk0-f53.google.com (mail-bk0-f53.google.com [209.85.214.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 06798431FB6 for ; Sat, 28 Jan 2012 19:37:15 -0800 (PST) Received: by bke11 with SMTP id 11so412824bke.26 for ; Sat, 28 Jan 2012 19:37:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:x-mailer:in-reply-to:references; bh=vNoD/RofHWKqw5Ihl3o5JYjD2gE/WtCy74v9pVB+KIA=; b=J7wfjFKJpzH/PgKwNZi6X5fXlC/7+Gk7aApNJLMiF9x4Xk3la+L1OLkZOnuJmvvY/7 p1ZgKmaEBthQCV3pgx/upGV6o1HUoL4ZiLkT8HM1OBXT8vwFs7Vxv5LpWcpCw7EzfS2K NERjia7icL/yWH4HD9xQK6MLH+TO6plzxDpmk= Received: by 10.204.129.198 with SMTP id p6mr5921473bks.96.1327808234582; Sat, 28 Jan 2012 19:37:14 -0800 (PST) Received: from localhost ([91.144.186.21]) by mx.google.com with ESMTPS id d2sm27445367bky.11.2012.01.28.19.37.13 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 28 Jan 2012 19:37:14 -0800 (PST) From: Dmitry Kurochkin To: notmuch@notmuchmail.org Subject: [PATCH 2/2] test: remove explicit loading of elisp tests in emacs-address-cleaning Date: Sun, 29 Jan 2012 07:36:03 +0400 Message-Id: <1327808163-31483-2-git-send-email-dmitry.kurochkin@gmail.com> X-Mailer: git-send-email 1.7.8.3 In-Reply-To: <1327808163-31483-1-git-send-email-dmitry.kurochkin@gmail.com> References: <1327808163-31483-1-git-send-email-dmitry.kurochkin@gmail.com> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Jan 2012 03:37:16 -0000 It is no longer needed, since elisp tests files are auto loaded now. --- test/emacs-address-cleaning | 9 +++------ 1 files changed, 3 insertions(+), 6 deletions(-) diff --git a/test/emacs-address-cleaning b/test/emacs-address-cleaning index 51018fe..6ddde5c 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 -- 1.7.8.3