@@ -1747,6 +1747,7 @@ def add_test_cases_to_suite(self, project, plan_id, suite_id, test_case_ids):
1747
1747
route_values ['suiteId' ] = self ._serialize .url ('suite_id' , suite_id , 'int' )
1748
1748
if test_case_ids is not None :
1749
1749
route_values ['testCaseIds' ] = self ._serialize .url ('test_case_ids' , test_case_ids , 'str' )
1750
+ route_values ['action' ] = 'TestCases'
1750
1751
response = self ._send (http_method = 'POST' ,
1751
1752
location_id = 'a4a1ec1c-b03f-41ca-8857-704594ecf58e' ,
1752
1753
version = '4.0' ,
@@ -1771,6 +1772,7 @@ def get_test_case_by_id(self, project, plan_id, suite_id, test_case_ids):
1771
1772
route_values ['suiteId' ] = self ._serialize .url ('suite_id' , suite_id , 'int' )
1772
1773
if test_case_ids is not None :
1773
1774
route_values ['testCaseIds' ] = self ._serialize .url ('test_case_ids' , test_case_ids , 'int' )
1775
+ route_values ['action' ] = 'TestCases'
1774
1776
response = self ._send (http_method = 'GET' ,
1775
1777
location_id = 'a4a1ec1c-b03f-41ca-8857-704594ecf58e' ,
1776
1778
version = '4.0' ,
@@ -1791,6 +1793,7 @@ def get_test_cases(self, project, plan_id, suite_id):
1791
1793
route_values ['planId' ] = self ._serialize .url ('plan_id' , plan_id , 'int' )
1792
1794
if suite_id is not None :
1793
1795
route_values ['suiteId' ] = self ._serialize .url ('suite_id' , suite_id , 'int' )
1796
+ route_values ['action' ] = 'TestCases'
1794
1797
response = self ._send (http_method = 'GET' ,
1795
1798
location_id = 'a4a1ec1c-b03f-41ca-8857-704594ecf58e' ,
1796
1799
version = '4.0' ,
@@ -1814,6 +1817,7 @@ def remove_test_cases_from_suite_url(self, project, plan_id, suite_id, test_case
1814
1817
route_values ['suiteId' ] = self ._serialize .url ('suite_id' , suite_id , 'int' )
1815
1818
if test_case_ids is not None :
1816
1819
route_values ['testCaseIds' ] = self ._serialize .url ('test_case_ids' , test_case_ids , 'str' )
1820
+ route_values ['action' ] = 'TestCases'
1817
1821
self ._send (http_method = 'DELETE' ,
1818
1822
location_id = 'a4a1ec1c-b03f-41ca-8857-704594ecf58e' ,
1819
1823
version = '4.0' ,
0 commit comments