diff --git a/app/views/valuation/spending_proposals/edit.html.erb b/app/views/valuation/spending_proposals/edit.html.erb
index 215998b3b..a3dba0b4b 100644
--- a/app/views/valuation/spending_proposals/edit.html.erb
+++ b/app/views/valuation/spending_proposals/edit.html.erb
@@ -129,10 +129,4 @@
<%= t("valuation.spending_proposals.show.undefined") %>
<% end %>
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/spec/features/admin/spending_proposals_spec.rb b/spec/features/admin/spending_proposals_spec.rb
index 3fe32dfbb..da17c3f35 100644
--- a/spec/features/admin/spending_proposals_spec.rb
+++ b/spec/features/admin/spending_proposals_spec.rb
@@ -168,7 +168,7 @@ feature 'Admin spending proposals' do
spending_proposal = create(:spending_proposal,
geozone: create(:geozone),
association_name: 'People of the neighbourhood',
- price: 1234.56,
+ price: 1234,
price_first_year: 1000,
feasible: false,
feasible_explanation: 'It is impossible',
@@ -184,7 +184,7 @@ feature 'Admin spending proposals' do
expect(page).to have_content(spending_proposal.author.name)
expect(page).to have_content(spending_proposal.association_name)
expect(page).to have_content(spending_proposal.geozone.name)
- expect(page).to have_content('1234.56')
+ expect(page).to have_content('1234')
expect(page).to have_content('1000')
expect(page).to have_content('Not feasible')
expect(page).to have_content('It is impossible')