Ondra Chaloupka created JBTM-3125:
-------------------------------------
Summary: 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
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}
--
This message was sent by Atlassian Jira
(v7.12.1#712002)