mirror of
https://github.com/samsonjs/media.git
synced 2026-04-07 11:35:46 +00:00
Fix incorrect format variable
PiperOrigin-RevId: 444530943
This commit is contained in:
parent
22c9b8168d
commit
6708b43bfb
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue