Skip to content

Commit 6940ceb

Browse files
Merge pull request spree#9987 from spark-solutions/SD-823
[SD-823] Corrects 'pendingpackage' issue
2 parents d338c75 + 909879c commit 6940ceb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/app/views/spree/admin/orders/_shipment.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<%= render partial: "spree/admin/variants/split", formats: :js %>
44

55
<div class="card-header stock-location no-borderb" data-hook="stock-location">
6-
<h1 class="d-flex flex-wrap align-items-center card-title mb-0 h5">
6+
<h1 class="flex-wrap align-items-center card-title mb-0 h5">
77
<span class="shipment-number"><%= shipment.number %></span>
88
-
99
<span class="shipment-state"><%= Spree.t("shipment_states.#{shipment.state}") %></span>

backend/spec/features/admin/orders/shipments_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
it 'can ship a completed order' do
3131
click_on 'Ship'
3232

33-
expect(page).to have_content("shipped\npackage")
33+
expect(page).to have_content("shipped package")
3434
expect(order.reload.shipment_state).to eq('shipped')
3535
end
3636
end

0 commit comments

Comments
 (0)