diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-01-10 03:54:23 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-01-10 03:54:23 +0000 |
commit | c0303bf47c1fd9c0b6e2188d9ca56f604a65ebed (patch) | |
tree | c43d46a0449b066bb1ba7ede607174af5b76327a /test | |
parent | 0a72533b594d6e866e44adaad8b70ffa831fe9eb (diff) | |
download | redmine-c0303bf47c1fd9c0b6e2188d9ca56f604a65ebed.tar.gz redmine-c0303bf47c1fd9c0b6e2188d9ca56f604a65ebed.zip |
remove unneeded Relation#all from WorkflowsControllerTest#status_transitions
git-svn-id: http://svn.redmine.org/redmine/trunk@12581 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/workflows_controller_test.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/functional/workflows_controller_test.rb b/test/functional/workflows_controller_test.rb index 001cb1a4e..1f5c9122b 100644 --- a/test/functional/workflows_controller_test.rb +++ b/test/functional/workflows_controller_test.rb @@ -339,7 +339,6 @@ class WorkflowsControllerTest < ActionController::TestCase WorkflowTransition. where(conditions). order('tracker_id, role_id, old_status_id, new_status_id'). - all. collect {|w| [w.old_status, w.new_status_id]} end end |