StoreKit Xcode generated receipt has wrong date(s)?

When using a StoreKit Configuration file to test IAPs the purchaseDate in the generated receipt is in the future by +1 hour which happens to be my GMT+1 timezone. For example:

Current date:
(lldb) po [NSDate date]
2021-04-20 21:51:26 +0000

Purchase date:
(lldb) po self.purchaseDate
2021-04-20 22:51:04 +0000

This looks to me like a bug in StoreKit testing unless if there is some timezone config I missed?

I've just come across the same issue. The dates in the receipt are tagged with Z. e.g. '2021-04-23T11:30:01Z' which means UTC but they are actually local time (in my case PST)
StoreKit Xcode generated receipt has wrong date(s)?
 
 
Q