From d7e0ab968120be2807c8cc4adf41c85e887e0b05 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Tue, 23 Jun 2015 10:21:46 -0400 Subject: [PATCH] 6320: Update Workbench test for active user VM setup. Now that the test fixtures give the active user access to testvm2, this test needs to be updated to account for it, just like the API server tests were. Refs #6320. --- apps/workbench/test/integration/users_test.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/workbench/test/integration/users_test.rb b/apps/workbench/test/integration/users_test.rb index 89554d3f87..838884edbf 100644 --- a/apps/workbench/test/integration/users_test.rb +++ b/apps/workbench/test/integration/users_test.rb @@ -116,7 +116,9 @@ class UsersTest < ActionDispatch::IntegrationTest click_link 'Advanced' click_link 'Metadata' assert page.has_text? 'Repository: active/activetestrepo' - assert !(page.has_text? 'VirtualMachine:') + vm_links = all("a", text: "VirtualMachine:") + assert_equal(1, vm_links.size) + assert_equal("VirtualMachine: testvm2.shell", vm_links.first.text) # Click on Setup button again and this time also choose a VM click_link 'Admin' -- 2.30.2