Resolve pending spec, reported issue is fixed

This commit is contained in:
Maikel Linke
2023-08-25 15:15:34 +10:00
parent ccafdc4494
commit d8da808901
2 changed files with 1 additions and 5 deletions

View File

@@ -33,7 +33,7 @@
%a{ href: "mailto:#{order.email}", target: "_blank" }
= order.email
%td
= order&.bill_address.full_name_for_sorting
= order&.bill_address&.full_name_for_sorting
%td.align-center
%span
= order.display_total

View File

@@ -269,8 +269,6 @@ describe '
end
it "displays non-empty cart orders" do
pending "issue #11120"
# empty cart order does not appear in the results
expect(page).not_to have_content order_empty.number
@@ -278,8 +276,6 @@ describe '
expect(page).to have_content order_not_empty.number
# non-empty cart order, with no with bill- and ship-address appear in the results
# pending issue #11120
expect(page).to have_content order_not_empty_no_address.number
end
end