Skip to content

Commit

Permalink
revert simple change
Browse files Browse the repository at this point in the history
  • Loading branch information
johrstrom committed Oct 28, 2021
1 parent 0d8c953 commit 0b63125
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/dashboard/test/system/batch_connect_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ def setup
select('oakley', from: bc_ele_id('cluster'))

# FIXME: no idea why .visible? doesn't work here. Selenium/chrome native still shows element as visible?
assert_equal('display: none;', find_option_style('node_type', 'advanced'))
assert_equal('display: none;', find_option_style('node_type', 'hugemem'))
assert_equal 'display: none;', find_option_style('node_type', 'advanced')
assert_equal 'display: none;', find_option_style('node_type', 'hugemem')

# select owens and now they're available
select('owens', from: bc_ele_id('cluster'))
assert_equal('', find_option_style('node_type', 'advanced'))
assert_equal('', find_option_style('node_type', 'hugemem'))
assert_equal '', find_option_style('node_type', 'advanced')
assert_equal '', find_option_style('node_type', 'hugemem')
end

test 'node type choice changes python versions' do
Expand Down

0 comments on commit 0b63125

Please sign in to comment.