-
Notifications
You must be signed in to change notification settings - Fork 16
Fix flaky test #270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix flaky test #270
Conversation
License Check Results🚀 The license check job ran with the Bazel command: bazel run //src:license-check Status: Click to expand output
|
The created documentation from the pull request is available at: docu-html |
|
@dcalavrezo-qorix careful, some workflows did not run yet. pull_request requires manual approval. pull_request_target is executed immediately. |
Why was it flaky? I'm not sure. The asserts are weird. Apparently, the order in strings ("foo, bar" and "bar, foo") was not considered deterministic, so the string was converted into a set of characters for comparison which is rather impossible to debug. The order seems actually deterministic. It isn't even clear to me what we are testing here, so we might as well delete the test... |
I guess we merge the fix for now, and revisit the test when we really look at verification. |
📌 Description
Enables a test previously marked as flaky and makes it stable.
Closes #226
🚨 Impact Analysis