From: Go MAEDA Date: Wed, 13 Mar 2019 15:50:24 +0000 (+0000) Subject: Fix the test (#4502). X-Git-Tag: 4.1.0~1063 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d25f697d39fdd2db8a0c2779e09e21c6ade4f191;p=redmine.git Fix the test (#4502). Patch by Mizuki ISHIKAWA. git-svn-id: http://svn.redmine.org/redmine/trunk@17942 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/unit/query_test.rb b/test/unit/query_test.rb index 4a4361fe9..3fa1da1f9 100644 --- a/test/unit/query_test.rb +++ b/test/unit/query_test.rb @@ -659,11 +659,15 @@ class QueryTest < ActiveSupport::TestCase end def test_operator_tomorrow + issue = Issue.generate!(:due_date => User.current.today.tomorrow) + other_issues = [] + other_issues << Issue.generate!(:due_date => User.current.today.yesterday) + other_issues << Issue.generate!(:due_date => User.current.today + 2) query = IssueQuery.new(:project => Project.find(1), :name => '_') query.add_filter('due_date', 'nd', ['']) issues = find_issues_with_query(query) - assert !issues.empty? - issues.each {|issue| assert_equal Date.today.tomorrow, issue.due_date} + assert_include issue, issues + other_issues.each {|i| assert_not_include i, issues } end def test_operator_date_periods