File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tests/unit/server/api/types Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1677,7 +1677,7 @@ async def test_spans_sort_eval_label_with_nulls(
1677
1677
)
1678
1678
response = await gql_client .execute (query , variables = {"projectId" : project_gid })
1679
1679
assert not response .errors
1680
- edges = response .data ["node" ]["spans" ]["edges" ]
1680
+ edges = response .data ["node" ]["spans" ]["edges" ] # type: ignore
1681
1681
# Expect span1 (non-null label) before span2 (null label)
1682
1682
expected_order = [
1683
1683
str (GlobalID (Span .__name__ , str (span1 .id ))),
Original file line number Diff line number Diff line change @@ -918,5 +918,5 @@ async def test_span_annotations_sort_handles_nulls(
918
918
query_desc = query .replace ("dir:asc" , "dir:desc" )
919
919
response_desc = await gql_client .execute (query_desc , variables = {"spanId" : span_id })
920
920
assert not response_desc .errors
921
- annotations_desc = response_desc .data ["span" ]["spanAnnotations" ]
921
+ annotations_desc = response_desc .data ["span" ]["spanAnnotations" ] # type: ignore
922
922
assert len (annotations_desc ) == 9
You can’t perform that action at this time.
0 commit comments