Browse Source

Fixed wrong assertion.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8640 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.4.0
Jean-Philippe Lang 12 years ago
parent
commit
08bb5e0c0a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      test/unit/query_test.rb

+ 1
- 1
test/unit/query_test.rb 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

Loading…
Cancel
Save