On Tue Nov 29 10:53:08 2022 +0000, Rémi Bernon wrote:
Imho it would still be better to reverse the control flow here. The test control flow should follow what you expect first, then what you got if you want to support potential errors. ie: If you test a bad format and expect an error, it should be `if (test.bad_fmt) ok(FAILED(notify.error), ...)`, rather than `if (FAILED(notify.error)) ok(test.bad_fmt, ...)`.
Ah, I see, I see.