Skip to content

Commit d8d2c26

Browse files
committed
Merge branch 'PYTHON-3636' of github.com:sleepyStick/mongo-python-driver into PYTHON-3636
2 parents c6d2ceb + 9256808 commit d8d2c26

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/asynchronous/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
from pymongo import common, message
4848
from pymongo.read_preferences import ReadPreference
4949
from pymongo.ssl_support import HAVE_SSL, _ssl # type:ignore[attr-defined]
50-
from pymongo.synchronous.uri_parser import parse_uri
50+
from pymongo.asynchronous.uri_parser import parse_uri
5151

5252
if HAVE_SSL:
5353
import ssl

test/auth_aws/test_auth_aws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
pass
3232

3333
from pymongo import MongoClient
34-
from pymongo.asynchronous.uri_parser import parse_uri
34+
from pymongo.synchronous.uri_parser import parse_uri
3535
from pymongo.errors import OperationFailure
3636

3737
pytestmark = pytest.mark.auth_aws

test/auth_oidc/test_auth_oidc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
from pymongo import MongoClient
3838
from pymongo._azure_helpers import _get_azure_response
3939
from pymongo._gcp_helpers import _get_gcp_response
40-
from pymongo.asynchronous.uri_parser import parse_uri
40+
from pymongo.synchronous.uri_parser import parse_uri
4141
from pymongo.auth_oidc_shared import _get_k8s_token
4242
from pymongo.auth_shared import _build_credentials_tuple
4343
from pymongo.cursor_shared import CursorType

0 commit comments

Comments
 (0)