@@ -43,7 +43,7 @@ def test_get_issuers(self):
4343 """Test the GetIssuers endpoint returns data"""
4444 try :
4545 correlation_id = str (uuid .uuid4 ())
46- result = self .issuers_api .get_issuers ("2.0" , correlation_id )
46+ result = self .issuers_api .get_issuers ("2.0" , x_correlation_id = correlation_id )
4747 print (result )
4848 assert result is not None , "Expected non-null issuers list"
4949 except ApiException as e :
@@ -55,7 +55,7 @@ def test_get_companies(self):
5555 """Test the GetCompanies endpoint returns data"""
5656 try :
5757 correlation_id = str (uuid .uuid4 ())
58- result = self .companies_api .get_companies ("2.0" , correlation_id )
58+ result = self .companies_api .get_companies ("2.0" , x_correlation_id = correlation_id )
5959 print (result )
6060 assert result is not None , "Expected non-null companies list"
6161 except ApiException as e :
@@ -67,7 +67,7 @@ def test_get_companies(self):
6767 # """Test the List1099Forms endpoint returns data"""
6868 # try:
6969 # correlation_id = str(uuid.uuid4())
70- # result = self.forms_api.list1099_forms("2.0", correlation_id)
70+ # result = self.forms_api.list1099_forms("2.0", x_correlation_id= correlation_id)
7171 # print(result)
7272 # assert result is not None, "Expected non-null 1099 forms list"
7373 # except ApiException as e:
0 commit comments