16 Jun
2025
16 Jun
'25
9:42 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40138 --- Comment #1 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- A few cases with datetime values do implicitly assume UTC. So we could add that to the test. Not sure if we should. Also note for instance: my $last_seen_rfc3339 = $last_seen . "z"; Hardcoded timezone ;) If you have no timezone in koha-conf and you export TZ=Etc/UTC before running the test, they will pass. Otherwise you need this at the start: local $ENV; $ENV{TZ} = 'Etc/UTC'; t::lib::Mocks::mock_config( 'timezone', 'Etc/UTC' ); -- You are receiving this mail because: You are watching all bug changes.