Xcode showing a test failure due to a race condition.
Actors eliminate data races at compile time, but they do not eliminate “race conditions.”
Every “await” in an actor is an opportunity for work to interleave across multiple threads, and bugs!
So we should strive to minimize suspension points in transactional code.