Skip to content

Commit a8330c2

Browse files
committed
chore: fix linter issue by using the base service
Signed-off-by: Norbert Biczo <[email protected]>
1 parent 31ee9cd commit a8330c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test_integration/test_ssl_verification.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import pytest
88
from requests.exceptions import SSLError
99

10-
from test.test_base_service import AnyServiceV1
10+
from ibm_cloud_sdk_core.base_service import BaseService
1111
from ibm_cloud_sdk_core.authenticators import NoAuthAuthenticator
1212

1313

@@ -43,7 +43,7 @@ def test_ssl_verification():
4343
# We run everything in a big try-except-finally block to make sure we always
4444
# shutdown the HTTP server gracefully .
4545
try:
46-
service = AnyServiceV1('2024-01-23', service_url='https://127.0.0.1:3333', authenticator=NoAuthAuthenticator())
46+
service = BaseService(service_url='https://127.0.0.1:3333', authenticator=NoAuthAuthenticator())
4747
#
4848
# First call the server with the default configuration.
4949
# It should fail due to the invalid SSL cert.

0 commit comments

Comments
 (0)