You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: