@@ -1829,6 +1829,7 @@ def add_test_cases_to_suite(self, project, plan_id, suite_id, test_case_ids):
1829
1829
route_values ['suiteId' ] = self ._serialize .url ('suite_id' , suite_id , 'int' )
1830
1830
if test_case_ids is not None :
1831
1831
route_values ['testCaseIds' ] = self ._serialize .url ('test_case_ids' , test_case_ids , 'str' )
1832
+ route_values ['action' ] = 'TestCases'
1832
1833
response = self ._send (http_method = 'POST' ,
1833
1834
location_id = 'a4a1ec1c-b03f-41ca-8857-704594ecf58e' ,
1834
1835
version = '4.1' ,
@@ -1853,6 +1854,7 @@ def get_test_case_by_id(self, project, plan_id, suite_id, test_case_ids):
1853
1854
route_values ['suiteId' ] = self ._serialize .url ('suite_id' , suite_id , 'int' )
1854
1855
if test_case_ids is not None :
1855
1856
route_values ['testCaseIds' ] = self ._serialize .url ('test_case_ids' , test_case_ids , 'int' )
1857
+ route_values ['action' ] = 'TestCases'
1856
1858
response = self ._send (http_method = 'GET' ,
1857
1859
location_id = 'a4a1ec1c-b03f-41ca-8857-704594ecf58e' ,
1858
1860
version = '4.1' ,
@@ -1873,6 +1875,7 @@ def get_test_cases(self, project, plan_id, suite_id):
1873
1875
route_values ['planId' ] = self ._serialize .url ('plan_id' , plan_id , 'int' )
1874
1876
if suite_id is not None :
1875
1877
route_values ['suiteId' ] = self ._serialize .url ('suite_id' , suite_id , 'int' )
1878
+ route_values ['action' ] = 'TestCases'
1876
1879
response = self ._send (http_method = 'GET' ,
1877
1880
location_id = 'a4a1ec1c-b03f-41ca-8857-704594ecf58e' ,
1878
1881
version = '4.1' ,
@@ -1896,6 +1899,7 @@ def remove_test_cases_from_suite_url(self, project, plan_id, suite_id, test_case
1896
1899
route_values ['suiteId' ] = self ._serialize .url ('suite_id' , suite_id , 'int' )
1897
1900
if test_case_ids is not None :
1898
1901
route_values ['testCaseIds' ] = self ._serialize .url ('test_case_ids' , test_case_ids , 'str' )
1902
+ route_values ['action' ] = 'TestCases'
1899
1903
self ._send (http_method = 'DELETE' ,
1900
1904
location_id = 'a4a1ec1c-b03f-41ca-8857-704594ecf58e' ,
1901
1905
version = '4.1' ,
0 commit comments