Skip to content

Commit

Permalink
appease rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsiaw committed Nov 5, 2024
1 parent d87fed1 commit fbf9761
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/browser/restricted_area_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
fill_in 'Email', with: admin.email
fill_in 'Password', with: admin.password
click_link_or_button 'Log in'
expect(page).to have_content("Sidekiq")
expect(page).to have_content('Sidekiq')
end

it 'swagger cannot be accessed without logging in' do
visit('/swagger')
fill_in 'Email', with: admin.email
fill_in 'Password', with: admin.password
click_link_or_button 'Log in'
expect(page).to have_content("Swagger")
expect(page).to have_content('Swagger')
end
end

0 comments on commit fbf9761

Please sign in to comment.