()
| 215 | |
| 216 | |
| 217 | def _summary() -> ExposuresSummary: |
| 218 | return ExposuresSummary( |
| 219 | excluded_identities=1, |
| 220 | timeseries=ExposuresTimeseries( |
| 221 | granularity="hour", |
| 222 | points=[ |
| 223 | ExposuresTimeseriesPoint( |
| 224 | bucket="2026-06-01T00:00:00+00:00", |
| 225 | new_identities={"control": 6, "variant_a": 4}, |
| 226 | ) |
| 227 | ], |
| 228 | ), |
| 229 | ) |
| 230 | |
| 231 | |
| 232 | @freeze_time("2026-06-11T12:00:00Z") |
no test coverage detected
searching dependent graphs…