diff --git a/extractor/src/test/java/org/schabi/newpipe/downloader/DownloaderTestImpl.java b/extractor/src/test/java/org/schabi/newpipe/downloader/DownloaderTestImpl.java index 0ce7722cd..091db071d 100644 --- a/extractor/src/test/java/org/schabi/newpipe/downloader/DownloaderTestImpl.java +++ b/extractor/src/test/java/org/schabi/newpipe/downloader/DownloaderTestImpl.java @@ -25,7 +25,7 @@ public final class DownloaderTestImpl extends Downloader { * Should be the latest Firefox ESR version. */ private static final String USER_AGENT = - "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0"; + "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0"; private static DownloaderTestImpl instance; private final RateLimitedClientWrapper clientWrapper; diff --git a/extractor/src/test/java/org/schabi/newpipe/downloader/ratelimiting/RateLimitedClientWrapper.java b/extractor/src/test/java/org/schabi/newpipe/downloader/ratelimiting/RateLimitedClientWrapper.java index 9d0f49599..fcd938373 100644 --- a/extractor/src/test/java/org/schabi/newpipe/downloader/ratelimiting/RateLimitedClientWrapper.java +++ b/extractor/src/test/java/org/schabi/newpipe/downloader/ratelimiting/RateLimitedClientWrapper.java @@ -56,7 +56,7 @@ public class RateLimitedClientWrapper { } final Response response = client.newCall(request).execute(); - if(response.code() != 429) { // 429 = Too many requests + if (response.code() != 429) { // 429 = Too many requests return response; } cause = new IllegalStateException("HTTP 429 - Too many requests"); diff --git a/extractor/src/test/java/org/schabi/newpipe/downloader/ratelimiting/limiter/RateLimiter.java b/extractor/src/test/java/org/schabi/newpipe/downloader/ratelimiting/limiter/RateLimiter.java index 4ad8a8221..5adf0915e 100644 --- a/extractor/src/test/java/org/schabi/newpipe/downloader/ratelimiting/limiter/RateLimiter.java +++ b/extractor/src/test/java/org/schabi/newpipe/downloader/ratelimiting/limiter/RateLimiter.java @@ -184,7 +184,7 @@ public abstract class RateLimiter { final TimeUnit unit, final double coldFactor ) { - if(warmupPeriod < 0) { + if (warmupPeriod < 0) { throw new IllegalArgumentException( "warmupPeriod must not be negative: " + warmupPeriod); } @@ -248,7 +248,7 @@ public abstract class RateLimiter { * @throws IllegalArgumentException if {@code permitsPerSecond} is negative or zero */ public final void setRate(final double permitsPerSecond) { - if(permitsPerSecond <= 0.0) { + if (permitsPerSecond <= 0.0) { throw new IllegalArgumentException("rate must be positive"); } synchronized (mutex()) { @@ -489,7 +489,7 @@ public abstract class RateLimiter { } private static void checkPermits(final int permits) { - if(permits <= 0.0) { + if (permits <= 0.0) { throw new IllegalArgumentException( "Requested permits (" + permits + ") must be positive"); }