From 8a749dca7c3abecaafea918b5a430f7ff9242da9 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Tue, 30 Aug 2011 05:09:04 +0000 Subject: [PATCH] remove trailing white-spaces from test/unit/workflow_test.rb. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6764 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/unit/workflow_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/workflow_test.rb b/test/unit/workflow_test.rb index bd713545f..fe356f87d 100644 --- a/test/unit/workflow_test.rb +++ b/test/unit/workflow_test.rb @@ -25,11 +25,11 @@ class WorkflowTest < ActiveSupport::TestCase Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 2) Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 3, :assignee => true) Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 4, :author => true) - + assert_difference 'Workflow.count', 3 do Workflow.copy(Tracker.find(2), Role.find(1), Tracker.find(3), Role.find(2)) end - + assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 2, :author => false, :assignee => false}) assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 3, :author => false, :assignee => true}) assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 4, :author => true, :assignee => false})