Simulate failed transaction using StoreKitTest

I am trying to use StoreKitTest to simulate .failed transaction in my unit tests. For the test session I set:

Code Block
testSession.failTransactionsEnabled = true
testSession.failureError = SKError.Code.unknown

after that I call:

Code Block
testSession.buyProduct(productIdentifier: productIdentifier)

I assumed that 
Code Block
func paymentQueue(_ queue: SKPaymentQueue, updatedTransactions transactions: [SKPaymentTransaction]) 

delegate method should be called with transactionState failed. Unfortunately the delegate method is not called, any ideas why?

I was able to simulate purchased transaction using StoreKitTest. I am using Xcode Version 12.0 beta 6.
Please reproduce the issue, then collect a sysdiagnose on the device or simulator that you're seeing the issue on. Then file feedback and we'll check out the logs to see what is going on for you.
Simulate failed transaction using StoreKitTest
 
 
Q