Fix incorrect format variable

PiperOrigin-RevId: 444530943
This commit is contained in:
bachinger 2022-04-26 13:30:27 +01:00 committed by Ian Baker
parent 22c9b8168d
commit 6708b43bfb

View file

@ -1204,7 +1204,7 @@ public class MockPlayer implements Player {
throws TimeoutException, InterruptedException {
if (!checkNotNull(conditionVariables.get(method)).block(timeOutMs)) {
throw new TimeoutException(
Util.formatInvariant("Method %d not called after %f ms", method, timeOutMs));
Util.formatInvariant("Method %d not called after %d ms", method, timeOutMs));
}
}