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
#758 added DetailedTestDiagnostic for test diagnostics from -Adetailedmsgtext.
This unfortunately breaks clients that manually parsed this output. TestDiagnostic#getMessage used to return the whole message, including the $$-separated arguments. DetailedTestDiagnostic#getMessage only returns the readable part of the error message.
This could be fixed a few different ways, e.g. by changing the behavior of getMessage back to the original and adding a new DetailedTestDiagnostic#getReadableMessage, or by adding a new TestDiagnostic#getRawMessage or something like that.
The text was updated successfully, but these errors were encountered:
#758 added
DetailedTestDiagnostic
for test diagnostics from-Adetailedmsgtext
.This unfortunately breaks clients that manually parsed this output.
TestDiagnostic#getMessage
used to return the whole message, including the$$
-separated arguments.DetailedTestDiagnostic#getMessage
only returns the readable part of the error message.This could be fixed a few different ways, e.g. by changing the behavior of
getMessage
back to the original and adding a newDetailedTestDiagnostic#getReadableMessage
, or by adding a newTestDiagnostic#getRawMessage
or something like that.The text was updated successfully, but these errors were encountered: