Commit 8f6d3282b9806f3d333650b996ab94fce8a9d1f4

Authored by Antonio Terceiro
1 parent dd8aaa47

Fix test

This was broken by 600d8e0fa2f3f7528d6b7a0e8980e63a5ed2d9ab which as
recently merged.
features/step_definitions/activate_enterprise_steps.rb
@@ -19,7 +19,7 @@ Given /^"([^\"]*)" is the active enterprise template$/ do |enterprise| @@ -19,7 +19,7 @@ Given /^"([^\"]*)" is the active enterprise template$/ do |enterprise|
19 template.save! 19 template.save!
20 20
21 e = Environment.default 21 e = Environment.default
22 - e.enterprise_template = template 22 + e.enterprise_default_template = template
23 e.save 23 e.save
24 end 24 end
25 25