()
| 66 | |
| 67 | |
| 68 | def _summary() -> ExposuresSummary: |
| 69 | return ExposuresSummary( |
| 70 | excluded_identities=1, |
| 71 | timeseries=ExposuresTimeseries( |
| 72 | granularity="hour", |
| 73 | points=[ |
| 74 | ExposuresTimeseriesPoint( |
| 75 | bucket="2026-06-01T00:00:00+00:00", |
| 76 | new_identities={"control": 10}, |
| 77 | ) |
| 78 | ], |
| 79 | ), |
| 80 | ) |
| 81 | |
| 82 | |
| 83 | def test_experiment_exposures__record_refresh__stores_payload_and_clears_error( |
no test coverage detected
searching dependent graphs…