Skip to content

Commit 17ea0b1

Browse files
committed
Disable flaky tests mentioned in issue iluwatar#643 and iluwatar#699
1 parent 7d4ccc6 commit 17ea0b1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

balking/src/test/java/com/iluwatar/balking/WashingMachineTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
*/
2323
package com.iluwatar.balking;
2424

25+
import org.junit.jupiter.api.Disabled;
2526
import org.junit.jupiter.api.Test;
2627

2728
import java.util.concurrent.ExecutorService;
@@ -37,6 +38,7 @@ public class WashingMachineTest {
3738

3839
private volatile WashingMachineState machineStateGlobal;
3940

41+
@Disabled
4042
@Test
4143
public void wash() throws Exception {
4244
WashingMachine washingMachine = new WashingMachine();

throttling/src/test/java/com/iluwatar/throttling/B2BServiceTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
import com.iluwatar.throttling.timer.ThrottleTimerImpl;
2626
import com.iluwatar.throttling.timer.Throttler;
27+
import org.junit.jupiter.api.Disabled;
2728
import org.junit.jupiter.api.Test;
2829

2930
import static org.junit.jupiter.api.Assertions.assertTrue;
@@ -32,7 +33,8 @@
3233
* B2BServiceTest class to test the B2BService
3334
*/
3435
public class B2BServiceTest {
35-
36+
37+
@Disabled
3638
@Test
3739
public void dummyCustomerApiTest() {
3840
Tenant tenant = new Tenant("testTenant", 2);

0 commit comments

Comments
 (0)