Skip to content

Commit c59b8c0

Browse files
committed
Fix test_utils imports
1 parent 70071fb commit c59b8c0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test_elasticsearch_serverless/test_client/test_utils.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@
1818

1919
import warnings
2020

21-
from elasticsearch._sync.client.utils import Stability, _quote, _stability_warning
22-
from elasticsearch.exceptions import GeneralAvailabilityWarning
21+
from elasticsearch_serverless._sync.client.utils import (
22+
Stability,
23+
_quote,
24+
_stability_warning,
25+
)
26+
from elasticsearch_serverless.exceptions import GeneralAvailabilityWarning
2327

2428

2529
def test_handles_ascii():

0 commit comments

Comments
 (0)