summaryrefslogtreecommitdiffstats
path: root/test/functional/enumerations_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/enumerations_controller_test.rb')
-rw-r--r--test/functional/enumerations_controller_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/enumerations_controller_test.rb b/test/functional/enumerations_controller_test.rb
index c1e52f67d..8e411c53e 100644
--- a/test/functional/enumerations_controller_test.rb
+++ b/test/functional/enumerations_controller_test.rb
@@ -68,7 +68,7 @@ class EnumerationsControllerTest < Redmine::ControllerTest
end
def test_create_with_custom_field_values
- custom_field = CustomField.generate!(:type => "TimeEntryActivityCustomField")
+ custom_field = TimeEntryActivityCustomField.generate!
assert_difference 'TimeEntryActivity.count' do
post :create, :params => {
:enumeration => {
@@ -152,7 +152,7 @@ class EnumerationsControllerTest < Redmine::ControllerTest
end
def test_update_custom_field_values
- custom_field = CustomField.generate!(:type => "TimeEntryActivityCustomField")
+ custom_field = TimeEntryActivityCustomField.generate!
enumeration = Enumeration.find(9)
assert_nil enumeration.custom_field_values.last.value
put :update, :params => {