(self, string, hrs_offset, tz)
| 155 | ) |
| 156 | |
| 157 | def _make_timestamp(self, string, hrs_offset, tz): |
| 158 | if hrs_offset >= 0: |
| 159 | offset_string = f"{hrs_offset:02d}00" |
| 160 | else: |
| 161 | offset_string = f"-{(hrs_offset * -1):02}00" |
| 162 | return Timestamp(string + offset_string).tz_convert(tz) |
| 163 | |
| 164 | def test_springforward_plural(self, performance_warning): |
| 165 | # test moving from standard to daylight savings |
no test coverage detected