-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SWI-2832 Migrate to OpenAPI Generator v7.0.0
#156
Conversation
Fixed TN lookup Tests in this commit
v7.0.0
v7.0.0
v7.0.0
v7.0.0
|
||
self.assertApiException(context, UnauthorizedException, 401) | ||
|
||
def test_create_call_forbidden(self) -> None: | ||
"""Validate a forbidden (403) request | ||
""" | ||
with self.assertRaises(ForbiddenException) as context: | ||
self.forbidden_api_instance.create_call(BW_ACCOUNT_ID, self.testCallBody, _return_http_data_only=False) | ||
self.forbidden_api_instance.create_call(BW_ACCOUNT_ID, self.testCallBody) | ||
|
||
self.assertApiException(context, ForbiddenException, 403) | ||
|
||
|
||
def test_get_call_state(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need to add logic here to deal with the high latency for this operation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all the tests are passing as is so i say leave it for now 🤷
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We want to migrate to mocking anyways right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@noahg1 the |
test/test_account_statistics.py
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are all of these new unit test stubs added? For example: test_account_statistics.py
exists here and in test/unit
.
No description provided.