Correct (wrongly) assumed ordering in test #892

Contributed by Luke Carrier.
This commit is contained in:
Felix Schäfer 2012-02-29 22:26:13 +01:00
parent b9b2c8c0d7
commit 4a3f10317f
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class TrackersControllerTest < ActionController::TestCase
assert_redirected_to :action => 'index'
tracker = Tracker.find_by_name('New tracker')
assert_equal [1], tracker.project_ids.sort
assert_equal [1, 6], tracker.custom_field_ids
assert_equal [1, 6], tracker.custom_field_ids.sort
assert_equal 0, tracker.workflows.count
end