remove "sleep" from IssuesSystemTest#test_update_journal_notes_with_preview

git-svn-id: http://svn.redmine.org/redmine/trunk@19840 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-06-28 16:36:57 +00:00
parent e75a7f3939
commit 247164679a

View File

@@ -351,6 +351,7 @@ class IssuesSystemTest < ApplicationSystemTestCase
log_user('admin', 'admin')
visit '/issues/1'
assert page.first('#journal-2-notes').has_content?('Some notes with Redmine links')
# Click on the edit button
page.first('#change-2 a.icon-edit').click
# Check that the textarea is displayed
@@ -365,7 +366,7 @@ class IssuesSystemTest < ApplicationSystemTestCase
# Save
click_on 'Save'
sleep 0.2
assert page.first('#journal-2-notes').has_content?('Updated notes')
assert_equal 'Updated notes', Journal.find(2).notes
end