diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-13 21:22:45 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-13 21:22:45 +0000 |
commit | 51030fbe25a3c70ec7252cfc1659d92d91c417f9 (patch) | |
tree | 5c831ae64f2a3210a6afe4e1492be054d6335df6 /test/unit | |
parent | 980b6db5c0227a9376392962e706aecf3fc1c066 (diff) | |
download | redmine-51030fbe25a3c70ec7252cfc1659d92d91c417f9.tar.gz redmine-51030fbe25a3c70ec7252cfc1659d92d91c417f9.zip |
Removed assertion that depends on the order of returned records.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8639 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/query_test.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/unit/query_test.rb b/test/unit/query_test.rb index c3bc10544..8bb9c152d 100644 --- a/test/unit/query_test.rb +++ b/test/unit/query_test.rb @@ -439,7 +439,6 @@ class QueryTest < ActiveSupport::TestCase query.filters = { 'project_id' => {:operator => '=', :values => ['mine']}} result = query.issues - assert_include "issues.project_id IN ('1','2','5')", query.statement assert_nil result.detect {|issue| !User.current.member_of?(issue.project)} end |