Merge pull request #11902 from kwoyke/JAVA-10334

JAVA-10334: Disable failing test
This commit is contained in:
kwoyke 2022-03-07 16:08:39 +01:00 committed by GitHub
commit 912c0d3f77
1 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@ package com.baeldung.spring.statemachine;
import com.baeldung.spring.statemachine.config.SimpleStateMachineConfiguration;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
@ -36,6 +37,7 @@ public class StateMachineIntegrationTest {
assertEquals("S2", stateMachine.getState().getId());
}
@Ignore("Fixing in JAVA-9808")
@Test
public void whenSimpleStringMachineActionState_thenActionExecuted() {