Skip to content

Commit da6d90e

Browse files
committed
Fix import
1 parent 49a5351 commit da6d90e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

opentelemetry-sdk/tests/trace/consistent_sampler/__init__.py

Whitespace-only changes.

opentelemetry-sdk/tests/trace/consistent_sampler/test_always_off.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
from testutil import random_trace_id
2-
31
from opentelemetry.sdk.trace._sampling_experimental import (
42
consistent_always_off,
53
)
64
from opentelemetry.sdk.trace.sampling import Decision
75

6+
from .testutil import random_trace_id
7+
88

99
def test_description():
1010
assert (

opentelemetry-sdk/tests/trace/consistent_sampler/test_always_on.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
from testutil import random_trace_id
2-
31
from opentelemetry.sdk.trace._sampling_experimental import consistent_always_on
42
from opentelemetry.sdk.trace.sampling import Decision
53

4+
from .testutil import random_trace_id
5+
66

77
def test_description():
88
assert (

opentelemetry-sdk/tests/trace/consistent_sampler/test_fixed_threshold.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import pytest
2-
from testutil import random_trace_id
32

43
from opentelemetry.sdk.trace._sampling_experimental import (
54
consistent_probability_based,
@@ -9,6 +8,8 @@
98
)
109
from opentelemetry.sdk.trace.sampling import Decision
1110

11+
from .testutil import random_trace_id
12+
1213

1314
@pytest.mark.parametrize(
1415
"probability,threshold",

0 commit comments

Comments
 (0)