Closed
Description
OneTimeTokenLoginConfiguererTests & OneTimeTokenLoginDslTests are flakey because they use a static member variable to capture the OneTimeToken. Since the tests run in parallel one test may override the captured value which can cause the assertion to fail.
Instead, a non-static member should be used. The value can be referenced by accessing the member variable from a Bean.