Skip to content

Commit 8927a27

Browse files
committed
undo import change in helpers
1 parent d8d2c26 commit 8927a27

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.asynchronous.uri_parser import parse_uri
50+
from pymongo.synchronous.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,8 +31,8 @@
3131
pass
3232

3333
from pymongo import MongoClient
34-
from pymongo.synchronous.uri_parser import parse_uri
3534
from pymongo.errors import OperationFailure
35+
from pymongo.synchronous.uri_parser import parse_uri
3636

3737
pytestmark = pytest.mark.auth_aws
3838

test/auth_oidc/test_auth_oidc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
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.synchronous.uri_parser import parse_uri
4140
from pymongo.auth_oidc_shared import _get_k8s_token
4241
from pymongo.auth_shared import _build_credentials_tuple
4342
from pymongo.cursor_shared import CursorType
@@ -50,6 +49,7 @@
5049
OIDCCallbackResult,
5150
_get_authenticator,
5251
)
52+
from pymongo.synchronous.uri_parser import parse_uri
5353

5454
ROOT = Path(__file__).parent.parent.resolve()
5555
TEST_PATH = ROOT / "auth" / "unified"

0 commit comments

Comments
 (0)