Commit 6708b43b by bachinger Committed by Ian Baker

Fix incorrect format variable

PiperOrigin-RevId: 444530943
parent 22c9b816
......@@ -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));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment