Commit 9264b501af713fdb32c8fdaa8f03bc932a1f4507

Authored by Diego Camarinha
1 parent 8e898da0

Fixes acceptance tests for compound metric configurations edition.

The problem was that, when the compound metric configuration was persisted, we didn't display the save button.

Signed off by: Heitor Reis <marcheing@gmail.com>
app/views/compound_metric_configurations/_form.html.erb
... ... @@ -36,7 +36,7 @@
36 36 </div>
37 37 <%= f.hidden_field(:kalibro_configuration_id, value: @kalibro_configuration_id) %>
38 38 <%= link_to t('back'), kalibro_configuration_path(@kalibro_configuration_id), class: 'btn btn-default' %>
39   - <%= f.submit t('save'), class: 'btn btn-primary' %>
40 39 <% end %>
  40 + <%= f.submit t('save'), class: 'btn btn-primary' %>
41 41 </div>
42 42 </div>
... ...