()
| 67 | |
| 68 | @pytest.fixture |
| 69 | def default_memory_info() -> MemoryInfo: |
| 70 | return MemoryInfo( |
| 71 | total_size=ByteSize.from_gb(8), |
| 72 | current_size=ByteSize.from_gb(4), |
| 73 | system_wide_used_size=ByteSize.from_gb(5), |
| 74 | ) |
| 75 | |
| 76 | |
| 77 | @pytest.fixture |
nothing calls this directly
no test coverage detected