Skip to content

Commit

Permalink
change from paid to generic
Browse files Browse the repository at this point in the history
  • Loading branch information
rkeur7 committed Nov 20, 2024
1 parent 0e7c1d5 commit f796b56
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ShippoTests/Integration/TestOrders.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public async void TestListOrders()
{
ListOrdersRequest req = new ListOrdersRequest() {
OrderStatus = new List<OrderStatusEnum>() {
OrderStatusEnum.Paid,
},
ShopApp = OrderShopAppEnum.Shippo,
};
Expand All @@ -32,7 +31,7 @@ public async void TestListOrders()
.And.BeOfType<List<Order>>();
orders.Results.Should().AllSatisfy(order =>
{
order.OrderStatus.Should().Be(OrderStatusEnum.Paid);
order.OrderStatus.Should().NotBeNull();
order.Should().NotBeNull();
order.ObjectId.Should().BeOfType<string>();
order.ToAddress.Should().BeOfType<Address>();
Expand Down

0 comments on commit f796b56

Please sign in to comment.