[#8219] omit test that needs MockSOLR to support "OR" Project: http://git-wip-us.apache.org/repos/asf/allura/repo Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/43c241b9 Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/43c241b9 Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/43c241b9 Branch: refs/heads/master Commit: 43c241b9643e8df8d22bf8b37364071b7dc7f3e4 Parents: 986bab0 Author: Dave Brondsema Authored: Sun Jul 22 15:44:51 2018 -0400 Committer: Dave Brondsema Committed: Sun Jul 22 15:44:51 2018 -0400 ---------------------------------------------------------------------- Allura/allura/tests/functional/test_personal_dashboard.py | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/allura/blob/43c241b9/Allura/allura/tests/functional/test_personal_dashboard.py ---------------------------------------------------------------------- diff --git a/Allura/allura/tests/functional/test_personal_dashboard.py b/Allura/allura/tests/functional/test_personal_dashboard.py index 6fe04e8..3a3e8fa 100644 --- a/Allura/allura/tests/functional/test_personal_dashboard.py +++ b/Allura/allura/tests/functional/test_personal_dashboard.py @@ -69,7 +69,6 @@ class TestTicketsSection(TrackerTestController): def setup_with_tools(self): self.project = M.Project.query.get(shortname='test2') self.tracker = self.project.app_instance('bugs') - self.new_ticket(summary='bar', _milestone='1.0') self.new_ticket(summary='foo', _milestone='1.0', assigned_to='test-admin') @td.with_tool('test2', 'Tickets', 'tickets') @@ -77,4 +76,3 @@ class TestTicketsSection(TrackerTestController): response = self.app.get('/dashboard') ticket_rows = response.html.find('tbody') assert_in('foo', str(ticket_rows)) - assert_in('bar', str(ticket_rows))