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 2D38610A52 for ; Thu, 20 Feb 2014 20:56:42 +0000 (UTC) Received: (qmail 39052 invoked by uid 500); 20 Feb 2014 20:56:41 -0000 Delivered-To: apmail-incubator-allura-commits-archive@incubator.apache.org Received: (qmail 39017 invoked by uid 500); 20 Feb 2014 20:56:41 -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 38934 invoked by uid 99); 20 Feb 2014 20:56:39 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Feb 2014 20:56:39 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 0927C92A6FF; Thu, 20 Feb 2014 20:56:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tvansteenburgh@apache.org To: allura-commits@incubator.apache.org Message-Id: <08e827565cde426099813d47475f6355@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: [#4703] Update tests to match new related artifact text Date: Thu, 20 Feb 2014 20:56:39 +0000 (UTC) Repository: incubator-allura Updated Branches: refs/heads/master eba8041f3 -> 7536bf068 [#4703] Update tests to match new related artifact text Signed-off-by: Tim Van Steenburgh Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/7536bf06 Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/7536bf06 Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/7536bf06 Branch: refs/heads/master Commit: 7536bf0682b190678fe51da935349edba329099d Parents: eba8041 Author: Tim Van Steenburgh Authored: Thu Feb 20 20:56:21 2014 +0000 Committer: Tim Van Steenburgh Committed: Thu Feb 20 20:56:21 2014 +0000 ---------------------------------------------------------------------- ForgeBlog/forgeblog/tests/functional/test_root.py | 2 +- ForgeTracker/forgetracker/tests/functional/test_root.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/7536bf06/ForgeBlog/forgeblog/tests/functional/test_root.py ---------------------------------------------------------------------- diff --git a/ForgeBlog/forgeblog/tests/functional/test_root.py b/ForgeBlog/forgeblog/tests/functional/test_root.py index d3eb932..cfe43c6 100644 --- a/ForgeBlog/forgeblog/tests/functional/test_root.py +++ b/ForgeBlog/forgeblog/tests/functional/test_root.py @@ -213,7 +213,7 @@ class Test(TestController): ThreadLocalORMSession.flush_all() r = self.app.get('/blog/%s/one/' % d) assert 'Related' in r - assert 'Blog Post: %s/two' % d in r + assert 'Blog: %s/two' % d in r def test_invalid_lookup(self): r = self.app.get('/blog/favicon.ico', status=404) http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/7536bf06/ForgeTracker/forgetracker/tests/functional/test_root.py ---------------------------------------------------------------------- diff --git a/ForgeTracker/forgetracker/tests/functional/test_root.py b/ForgeTracker/forgetracker/tests/functional/test_root.py index 41d691a..b79a8e3 100644 --- a/ForgeTracker/forgetracker/tests/functional/test_root.py +++ b/ForgeTracker/forgetracker/tests/functional/test_root.py @@ -863,7 +863,7 @@ class TestFunctionalController(TrackerTestController): response = self.app.get('/p/test/bugs/1/') assert 'Related' in response assert 'Wiki: aaa' in response - assert 'Ticket: #2' in response + assert 'Tickets: #2' in response b = tm.Ticket.query.find(dict(ticket_num=2)).first() b.deleted = True