mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-17 21:54:06 +00:00
Fix Hound CI violations
This commit is contained in:
parent
110afe1192
commit
c742e57534
3 changed files with 6 additions and 5 deletions
|
|
@ -17,7 +17,8 @@ feature Conference do
|
|||
|
||||
click_button 'Create Conference'
|
||||
|
||||
expect(page.find('#flash_notice').text).to eq('Conference was successfully created.')
|
||||
expect(page.find('#flash_notice').text).
|
||||
to eq('Conference was successfully created.')
|
||||
expect(Conference.count).to eq(expected_count)
|
||||
end
|
||||
|
||||
|
|
@ -32,7 +33,8 @@ feature Conference do
|
|||
fill_in 'conference_social_tag', with: 'NewCon'
|
||||
|
||||
click_button 'Update Conference'
|
||||
expect(page.find('#flash_notice').text).to eq('Conference was successfully updated.')
|
||||
expect(page.find('#flash_notice').text).
|
||||
to eq('Conference was successfully updated.')
|
||||
|
||||
conference.reload
|
||||
expect(conference.title).to eq('New Con')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue