Clear rotation timestamps before each test.
(self)
| 127 | """Test the core logic of the auth rotation function""" |
| 128 | |
| 129 | def setUp(self): |
| 130 | """Clear rotation timestamps before each test.""" |
| 131 | from browser_utils import auth_rotation |
| 132 | |
| 133 | auth_rotation._ROTATION_TIMESTAMPS.clear() |
| 134 | |
| 135 | @patch( |
| 136 | "builtins.open", |