Skip to content

Commit

Permalink
Fix checkArgument format string in TestStream (apache#24134)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennknowles authored Nov 12, 2022
1 parent 369e2ba commit aa0a35d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public Builder<T> advanceWatermarkTo(Instant newWatermark) {
public Builder<T> advanceProcessingTime(Duration amount) {
checkArgument(
amount.getMillis() > 0,
"Must advance the processing time by a positive amount. Got: ",
"Must advance the processing time by a positive amount. Got: %s",
amount);
ImmutableList<Event<T>> newEvents =
ImmutableList.<Event<T>>builder()
Expand Down

0 comments on commit aa0a35d

Please sign in to comment.