Skip to content

Commit

Permalink
Disable flaky tests mentioned in issue iluwatar#643 and iluwatar#699
Browse files Browse the repository at this point in the history
  • Loading branch information
iluwatar committed Mar 31, 2018
1 parent 7d4ccc6 commit 17ea0b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*/
package com.iluwatar.balking;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

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

private volatile WashingMachineState machineStateGlobal;

@Disabled
@Test
public void wash() throws Exception {
WashingMachine washingMachine = new WashingMachine();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

import com.iluwatar.throttling.timer.ThrottleTimerImpl;
import com.iluwatar.throttling.timer.Throttler;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertTrue;
Expand All @@ -32,7 +33,8 @@
* B2BServiceTest class to test the B2BService
*/
public class B2BServiceTest {


@Disabled
@Test
public void dummyCustomerApiTest() {
Tenant tenant = new Tenant("testTenant", 2);
Expand Down

0 comments on commit 17ea0b1

Please sign in to comment.