Return-Path: X-Original-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5A66C1014D for ; Wed, 21 Aug 2013 20:12:27 +0000 (UTC) Received: (qmail 70883 invoked by uid 500); 21 Aug 2013 20:12:26 -0000 Delivered-To: apmail-incubator-allura-commits-archive@incubator.apache.org Received: (qmail 70566 invoked by uid 500); 21 Aug 2013 20:12:24 -0000 Mailing-List: contact allura-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: allura-dev@incubator.apache.org Delivered-To: mailing list allura-commits@incubator.apache.org Received: (qmail 69445 invoked by uid 99); 21 Aug 2013 20:12:18 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Aug 2013 20:12:18 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 3C20E8C1EC5; Wed, 21 Aug 2013 20:12:18 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: brondsem@apache.org To: allura-commits@incubator.apache.org Date: Wed, 21 Aug 2013 20:12:36 -0000 Message-Id: <31da52d37a034e3db12813b5852c7658@git.apache.org> In-Reply-To: <5e9ac297178240c4945d759d2ccda9db@git.apache.org> References: <5e9ac297178240c4945d759d2ccda9db@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [20/50] git commit: [#3154] ticket:393 Fix test after merge [#3154] ticket:393 Fix test after merge Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/9f6cc391 Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/9f6cc391 Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/9f6cc391 Branch: refs/heads/db/3154b Commit: 9f6cc3913a1e6467aba9930d64c608cd9e72b121 Parents: c57988b Author: Igor Bondarenko Authored: Wed Jul 24 13:32:26 2013 +0000 Committer: Dave Brondsema Committed: Wed Aug 21 18:12:25 2013 +0000 ---------------------------------------------------------------------- Allura/allura/tests/test_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/9f6cc391/Allura/allura/tests/test_tasks.py ---------------------------------------------------------------------- diff --git a/Allura/allura/tests/test_tasks.py b/Allura/allura/tests/test_tasks.py index 60a1abc..06d4ede 100644 --- a/Allura/allura/tests/test_tasks.py +++ b/Allura/allura/tests/test_tasks.py @@ -363,7 +363,7 @@ class TestExportTasks(unittest.TestCase): export_tasks.bulk_export('test', [u'bugs', u'blog'], 'test-admin') assert_equal(log.info.call_count, 2) assert_equal(log.info.call_args_list, [ - mock.call('Tool urls is not exportable. Skipping.'), + mock.call('Tool bugs is not exportable. Skipping.'), mock.call('Tool blog is not exportable. Skipping.')]) @mock.patch('allura.tasks.export_tasks.shutil')