Skip to content

Commit a79deef

Browse files
committed
fix: pass sortingMode arg in remaining getProducts test calls
1 parent 68cd31f commit a79deef

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

web/tests/functional/products/test_config_db_share.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,9 @@ def create_test_product(product_name, product_endpoint):
224224

225225
# Remove the product through the main server.
226226
p_id = self._root_client.getProducts('producttest_second', None,
227-
None, None)[0].id
227+
None, None, None)[0].id
228228
p_id2 = self._pr_client_2.getProducts('producttest_second', None,
229-
None, None)[0].id
229+
None, None, None)[0].id
230230
self.assertIsNotNone(p_id)
231231
self.assertEqual(p_id, p_id2,
232232
"The products have different ID across the two "
@@ -236,7 +236,7 @@ def create_test_product(product_name, product_endpoint):
236236
"Main server reported error while removing product.")
237237

238238
self.assertEqual(len(self._pr_client_2.getProducts('_second', None,
239-
None, None)),
239+
None, None, None)),
240240
0,
241241
"Secondary server still sees the removed product.")
242242

0 commit comments

Comments
 (0)