diff --git a/throttling/src/test/java/com/iluwatar/throttling/B2BServiceTest.java b/throttling/src/test/java/com/iluwatar/throttling/B2BServiceTest.java index 8a57f19df..7e98fb67a 100644 --- a/throttling/src/test/java/com/iluwatar/throttling/B2BServiceTest.java +++ b/throttling/src/test/java/com/iluwatar/throttling/B2BServiceTest.java @@ -36,7 +36,7 @@ public class B2BServiceTest { public void dummyCustomerApiTest() { Tenant tenant = new Tenant("testTenant", 2); // In order to assure that throttling limits will not be reset, we use an empty throttling implementation - Throttler timer = () -> {}; + Throttler timer = () -> { }; B2BService service = new B2BService(timer); for (int i = 0; i < 5; i++) {