From: Tim Pierce Date: Mon, 26 Jan 2015 15:24:40 +0000 (-0500) Subject: 5010: fixed integration test X-Git-Tag: 1.1.0~1862^2 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/ffa928f7e9752b3bfab87cbca14392909416bf91 5010: fixed integration test Fixed a failing integration test that checked for the presence of a collection in the Home project after being deleted. Removed the assertion that checked the Home project post-deletion. --- diff --git a/apps/workbench/test/integration/projects_test.rb b/apps/workbench/test/integration/projects_test.rb index 77d5722947..7f051f673f 100644 --- a/apps/workbench/test/integration/projects_test.rb +++ b/apps/workbench/test/integration/projects_test.rb @@ -239,14 +239,6 @@ class ProjectsTest < ActionDispatch::IntegrationTest when 'Remove' assert page.has_no_text?(my_collection['name']), 'Collection still found in src project after remove' - visit page_with_token 'active', '/' - find("#projects-menu").click - find(".dropdown-menu a", text: "Home").click - assert page.has_text?(my_collection['name']), 'Collection not found in home project after remove' - if expect_name_change - assert page.has_text?(my_collection['name']+' removed from ' + src['name']), - 'Collection with update name is not found in home project after remove' - end end end end