rusackas commented on PR #34564: URL: https://github.com/apache/superset/pull/34564#issuecomment-3858170445
Fixed the failing CI test. The test was checking the full datetime string (`'2015-01-01 00:00:00'`), which failed on CI runners in different timezones (e.g., UTC-5 would produce `'2015-01-01 05:00:00'`). The fix updates the test to verify only the date component (`'2015-01-01'`), which is what matters for the calendar heatmap use case. The test now correctly reflects that: 1. `convertUTCTimestampToLocal` adjusts timestamps so they display the UTC date when interpreted locally 2. `getFormattedUTCTime` formats timestamps directly (Cal-Heatmap's `afterLoadData` handles the adjustment) 3. The date portion is always correct regardless of timezone -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
