Fixed wrong assertion.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8640 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2012-01-14 09:36:51 +00:00
parent 51030fbe25
commit 08bb5e0c0a
1 changed files with 1 additions and 1 deletions

View File

@ -427,7 +427,7 @@ class QueryTest < ActiveSupport::TestCase
query.filters = { "cf_#{cf.id}" => {:operator => '=', :values => ['me']}}
result = query.issues
assert_equal 1, result.size
assert issue1, result.first
assert_equal issue1, result.first
end
def test_filter_my_projects