]
Issue was automatically transitioned when Ondra Chaloupka created pull request #1427 in
GitHub
----------------------------------------------------------------------------------------------
Status: Pull Request Sent (was: Open)
Some LRA&RTS tests uses wrong String.format paramters
-----------------------------------------------------
Key: JBTM-3125
URL:
https://issues.jboss.org/browse/JBTM-3125
Project: JBoss Transaction Manager
Issue Type: Bug
Components: LRA, REST
Affects Versions: 5.9.3.Final
Reporter: Ondra Chaloupka
Assignee: Ondra Chaloupka
Priority: Optional
Some tests uses wrong {{String.format}}. For example wrong number of arguments for the
{{format}} methdo
{code}
System.out.printf("SRA: %s: Updating hotel participant state to: ", bookingId,
status);
{code}
should be
{code}
System.out.printf("SRA: %s: Updating hotel participant state to: %s",
bookingId, status);
{code}