@@ -43,7 +43,7 @@ def test_get_issuers(self):
43
43
"""Test the GetIssuers endpoint returns data"""
44
44
try :
45
45
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 )
47
47
print (result )
48
48
assert result is not None , "Expected non-null issuers list"
49
49
except ApiException as e :
@@ -55,7 +55,7 @@ def test_get_companies(self):
55
55
"""Test the GetCompanies endpoint returns data"""
56
56
try :
57
57
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 )
59
59
print (result )
60
60
assert result is not None , "Expected non-null companies list"
61
61
except ApiException as e :
@@ -67,7 +67,7 @@ def test_get_companies(self):
67
67
# """Test the List1099Forms endpoint returns data"""
68
68
# try:
69
69
# 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)
71
71
# print(result)
72
72
# assert result is not None, "Expected non-null 1099 forms list"
73
73
# except ApiException as e:
0 commit comments