Skip to content

Commit af12ac3

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

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

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

0 commit comments

Comments
 (0)