Skip to content

Commit 72aec1d

Browse files
committed
Fix unit tests
Change-Id: I5f780e47acf2ad830099b92368d9351b0f6993dd Co-developed-by: Cursor <[email protected]>
1 parent c5c54ac commit 72aec1d

File tree

2 files changed

+5
-5
lines changed
  • instrumentation-loongsuite/loongsuite-instrumentation-dashscope

2 files changed

+5
-5
lines changed

instrumentation-loongsuite/loongsuite-instrumentation-dashscope/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ include = [
5252
]
5353

5454
[tool.hatch.build.targets.wheel]
55-
packages = ["src/loongsuite"]
55+
packages = ["src/opentelemetry"]
5656

instrumentation-loongsuite/loongsuite-instrumentation-dashscope/src/opentelemetry/instrumentation/dashscope/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
completion functionality.
3131
3232
Usage:
33-
from loongsuite.instrumentation.dashscope import DashScopeInstrumentor
33+
from opentelemetry.instrumentation.dashscope import DashScopeInstrumentor
3434
3535
DashScopeInstrumentor().instrument()
3636
@@ -42,8 +42,8 @@
4242
import logging
4343
from typing import Collection
4444

45-
from loongsuite.instrumentation.dashscope.package import _instruments
46-
from loongsuite.instrumentation.dashscope.patch import (
45+
from opentelemetry.instrumentation.dashscope.package import _instruments
46+
from opentelemetry.instrumentation.dashscope.patch import (
4747
wrap_aio_generation_call,
4848
wrap_generation_call,
4949
wrap_image_synthesis_async_call,
@@ -52,7 +52,7 @@
5252
wrap_text_embedding_call,
5353
wrap_text_rerank_call,
5454
)
55-
from loongsuite.instrumentation.dashscope.version import __version__
55+
from opentelemetry.instrumentation.dashscope.version import __version__
5656
from wrapt import wrap_function_wrapper
5757

5858
from opentelemetry.instrumentation.instrumentor import BaseInstrumentor

0 commit comments

Comments
 (0)