Commit 7fd11208 authored by Heinrich Lee Yu's avatar Heinrich Lee Yu

Fix variable name and remove trailing whitespace

parent 1456c6a4
...@@ -257,10 +257,13 @@ describe 'Issue Boards', :js do ...@@ -257,10 +257,13 @@ describe 'Issue Boards', :js do
before do before do
stub_licensed_features(scoped_labels: true) stub_licensed_features(scoped_labels: true)
visit project_board_path(project, board)
wait_for_requests
end end
it 'removes existing scoped label' do it 'removes existing scoped label' do
click_card(card) click_card(card1)
page.within('.labels') do page.within('.labels') do
click_link 'Edit' click_link 'Edit'
...@@ -281,9 +284,9 @@ describe 'Issue Boards', :js do ...@@ -281,9 +284,9 @@ describe 'Issue Boards', :js do
end end
end end
expect(card).to have_selector('.scoped-label-wrapper', count: 1) expect(card1).to have_selector('.scoped-label-wrapper', count: 1)
expect(card).not_to have_content(scoped_label_1.title) expect(card1).not_to have_content(scoped_label_1.title)
expect(card).to have_content(scoped_label_2.title) expect(card1).to have_content(scoped_label_2.title)
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment