Skip to content

Commit 2af0c42

Browse files
committed
fix paths
1 parent 1c3f056 commit 2af0c42

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tests/profiling_v2/collector/test_stack.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import uuid
88

99
import pytest
10-
from tests.profiling.collector import test_collector
10+
from tests.profiling_v2.collector import test_collector
1111

1212
from ddtrace import ext
1313
from ddtrace.internal.datadog.profiling import ddup
@@ -35,7 +35,7 @@
3535
def test_collect_truncate():
3636
import os
3737

38-
from tests.profiling.collector.test_stack import func1
38+
from tests.profiling_v2.collector.test_stack import func1
3939

4040
from ddtrace.profiling import profiler
4141
from tests.profiling_v2.collector import pprof_utils

tests/profiling_v2/test_gunicorn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def _run_gunicorn(*args):
4343
os.path.dirname(__file__),
4444
]
4545
+ list(args)
46-
+ ["tests.profiling.gunicorn-app:app"]
46+
+ ["tests.profiling_v2.gunicorn-app:app"]
4747
)
4848
return subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
4949

tests/profiling_v2/test_uwsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
b"number of threads must be set"
2323
)
2424

25-
uwsgi_app = os.path.join(os.path.dirname(__file__), "..", "profiling", "uwsgi-app.py")
25+
uwsgi_app = os.path.join(os.path.dirname(__file__), "uwsgi-app.py")
2626

2727

2828
@pytest.fixture

0 commit comments

Comments
 (0)