Skip to content

Commit 421793a

Browse files
authored
Update ordering_tests.py
updated the code as suggested.
1 parent fb9c114 commit 421793a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/managers/ordering_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def test_get_price_id_list_item_not_found(self):
342342
price1 = {'id': 1234, 'locationGroupId': '', 'categories': [category1]}
343343
softwareDescription1 = {'id': 1234, 'longDescription': 'ABCD 1.2-34', 'referenceCode': 'ABCD_9_32'}
344344
item1 = {'id': 1111, 'keyName': 'ITEM1', 'itemCategory': category1,
345-
'prices': [price1], 'softwareDescription': [softwareDescription1], }
345+
'prices': [price1], 'softwareDescription': softwareDescription1, }
346346

347347
with mock.patch.object(self.ordering, 'list_items') as list_mock:
348348
list_mock.return_value = [item1]

0 commit comments

Comments
 (0)