1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-11 19:53:07 +00:00

Fixes tests (postgresql).

git-svn-id: http://redmine.rubyforge.org/svn/branches/work@1622 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2008-07-04 17:50:19 +00:00
parent 425153b103
commit d571a9717e
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ class RoleTest < Test::Unit::TestCase
target = Role.new(:name => 'Target')
assert target.save
assert target.workflows.copy(source)
target.workflows.copy(source)
target.reload
assert_equal 90, target.workflows.size
end

View File

@ -26,7 +26,7 @@ class TrackerTest < Test::Unit::TestCase
target = Tracker.new(:name => 'Target')
assert target.save
assert target.workflows.copy(source)
target.workflows.copy(source)
target.reload
assert_equal 89, target.workflows.size
end