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
In the TCK assertion methods the final argument for the method is Object... message. In most cases it seems the message isn't processed and toString() is invoked on the object array resulting in a message that is not useful.
Example output:
org.opentest4j.AssertionFailedError: [Ljava.lang.Object;@221c097f ==> expected: <true> but was: <false>
There is already a method within the JAXRSCommonClient which converts the object array into a string message.
The text was updated successfully, but these errors were encountered:
In the TCK assertion methods the final argument for the method is
Object... message
. In most cases it seems the message isn't processed andtoString()
is invoked on the object array resulting in a message that is not useful.Example output:
There is already a method within the
JAXRSCommonClient
which converts the object array into a string message.The text was updated successfully, but these errors were encountered: