(self)
| 235 | class test_make_aware: |
| 236 | |
| 237 | def test_standard_tz(self): |
| 238 | tz = tzinfo() |
| 239 | wtz = make_aware(datetime.now(_timezone.utc), tz) |
| 240 | assert wtz.tzinfo == tz |
| 241 | |
| 242 | def test_tz_when_zoneinfo(self): |
| 243 | tz = ZoneInfo('US/Eastern') |
nothing calls this directly
no test coverage detected