Skip to content

Commit 6e5cc5f

Browse files
committed
[test] Use a valid value for the assignment_status parameter
1 parent 757b9a1 commit 6e5cc5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/fulfillment-order.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ describe('Shopify#fulfillmentOrder', () => {
1717
scope
1818
.get(
1919
'/admin/assigned_fulfillment_orders.json' +
20-
'?assignment_status=cancellation&location_ids[]=48752903'
20+
'?assignment_status=cancellation_requested&location_ids[]=48752903'
2121
)
2222
.reply(200, output);
2323

2424
return shopify.fulfillmentOrder
2525
.list({
26-
assignment_status: 'cancellation',
26+
assignment_status: 'cancellation_requested',
2727
location_ids: ['48752903']
2828
})
2929
.then((data) => expect(data).to.deep.equal(output.fulfillment_orders));

0 commit comments

Comments
 (0)