Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -881,10 +881,15 @@ def test_edge_a1_query_windowing_limit_1(self, authed_api, mock_data):
"include_trace_ids": True,
"windowing": {"limit": 1},
},
condition_fn=lambda r: len(
r.json().get("query_revision", {}).get("data", {}).get("trace_ids", [])
)
== 1,
condition_fn=lambda r: (
len(
r.json()
.get("query_revision", {})
.get("data", {})
.get("trace_ids", [])
)
== 1
),
)
# ---------------------------------------------------------------------

Expand Down Expand Up @@ -919,10 +924,12 @@ def test_edge_a2_query_request_windowing_overrides_stored(
"include_traces": True,
"windowing": {"limit": 1},
},
condition_fn=lambda r: len(
r.json().get("query_revision", {}).get("data", {}).get("traces", [])
)
== 1,
condition_fn=lambda r: (
len(
r.json().get("query_revision", {}).get("data", {}).get("traces", [])
)
== 1
),
)
# ---------------------------------------------------------------------

Expand Down
61 changes: 0 additions & 61 deletions web/oss/src/components/EnhancedUIs/Table/README.md

This file was deleted.

67 changes: 0 additions & 67 deletions web/oss/src/components/EnhancedUIs/Table/assets/CustomCells.tsx

This file was deleted.

Loading
Loading