Skip to content

Commit 726a9a8

Browse files
committed
linting fix
1 parent a38d43d commit 726a9a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws-opentelemetry-distro/tests/amazon/opentelemetry/distro/exporter/otlp/aws/logs/test_aws_cw_otlp_batch_log_record_processor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ def test_process_log_data_nested_structure_size_exceeds_max_log_size(self):
116116

117117
def test_process_log_data_primitive(self):
118118

119-
primitives: List[AnyValue] = ["test", b"test", 1, 1.2, True, False, None, "深入 Python", "café"]
120-
expected_sizes = [4, 4, 1, 3, 4, 5, 0, 2 * 4 + len(" Python"), 1 * 4 + len("caf")]
119+
primitives: List[AnyValue] = ["test", b"test", 1, 1.2, True, False, None, "深入 Python", "calfé"]
120+
expected_sizes = [4, 4, 1, 3, 4, 5, 0, 2 * 4 + len(" Python"), 1 * 4 + len("calf")]
121121

122122
for index, primitive in enumerate(primitives):
123123
log = self.generate_test_log_data(log_body=primitive, count=1)

0 commit comments

Comments
 (0)