summaryrefslogtreecommitdiffstats
path: root/test/system
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2024-09-11 08:13:32 +0000
committerGo MAEDA <maeda@farend.jp>2024-09-11 08:13:32 +0000
commit51312cc318180bb265b6ad32fdd7d1c2472a7521 (patch)
tree2ade87282e8dc8a56a50b1682311ac3399d012b0 /test/system
parent68121841b5f830851912a09265998f8ee86fd31c (diff)
downloadredmine-51312cc318180bb265b6ad32fdd7d1c2472a7521.tar.gz
redmine-51312cc318180bb265b6ad32fdd7d1c2472a7521.zip
Fix test failure in IssuesSystemTest due to incorrect attachment count expectation (#41238).
Patch by Katsuya HIDAKA (user:hidakatsuya). git-svn-id: https://svn.redmine.org/redmine/trunk@23051 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/system')
-rw-r--r--test/system/issues_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb
index 2b83ef362..be0744157 100644
--- a/test/system/issues_test.rb
+++ b/test/system/issues_test.rb
@@ -274,7 +274,7 @@ class IssuesSystemTest < ApplicationSystemTestCase
click_on 'Submit'
- assert_equal 1, Issue.find(2).attachments.count
+ assert_equal 3, Issue.find(2).attachments.count
end
test "removing issue shows confirm dialog" do