XiaoyangCai360 commented on PR #7858: URL: https://github.com/apache/incubator-seata/pull/7858#issuecomment-3650198834
Thanks for the question. There is no public CI failure record for this test. The flakiness was identified using NonDex, which executes tests under non-deterministic JVM behaviors (for example, randomized iteration order). Under multiple NonDex runs, this test fails intermittently because it relies on the Map.toString() output, which depends on the iteration order of HashMap. Although this issue may not consistently surface in CI, it represents a potential source of flakiness that can be exposed under different JVM implementations or execution orders. This change removes the order-dependent assertion and makes the test deterministic. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
