summaryrefslogtreecommitdiffstats
path: root/test/system
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-07-15 16:37:43 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-07-15 16:37:43 +0000
commit98e7e723c3f7f0d40de275e4041defc06d7b4967 (patch)
tree4105f46098bda50056a29669f33b3b0cfab6ab94 /test/system
parent7512e3cc39b87895d042a0ecd7ef27c48dff3f0a (diff)
downloadredmine-98e7e723c3f7f0d40de275e4041defc06d7b4967.tar.gz
redmine-98e7e723c3f7f0d40de275e4041defc06d7b4967.zip
add more assert_equal to IssuesSystemTest#test_bulk_copy
git-svn-id: http://svn.redmine.org/redmine/trunk@19911 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/system')
-rw-r--r--test/system/issues_test.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb
index 733f644c3..2305b80d0 100644
--- a/test/system/issues_test.rb
+++ b/test/system/issues_test.rb
@@ -459,7 +459,9 @@ class IssuesSystemTest < ApplicationSystemTestCase
end
copies = Issue.order('id DESC').limit(2)
+ assert_equal 2, copies[0].project.id
assert_equal 6, copies[0].priority.id
+ assert_equal 2, copies[1].project.id
assert_equal 6, copies[1].priority.id
end