-
Bug
-
Resolution: Done
-
Optional
-
5.9.3.Final
-
None
Some tests uses wrong String.format. For example wrong number of arguments for the format methdo
System.out.printf("SRA: %s: Updating hotel participant state to: ", bookingId, status);
should be
System.out.printf("SRA: %s: Updating hotel participant state to: %s", bookingId, status);