File tree 1 file changed +2
-1
lines changed
src/test/java/org/commonwl/view/workflow
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 12
12
import org .springframework .boot .test .autoconfigure .orm .jpa .DataJpaTest ;
13
13
import org .springframework .test .context .ContextConfiguration ;
14
14
import org .springframework .test .context .TestPropertySource ;
15
+ import org .springframework .transaction .annotation .Propagation ;
15
16
import org .springframework .transaction .annotation .Transactional ;
16
17
17
18
@ TestPropertySource (locations = "classpath:it-application.properties" )
18
19
@ DataJpaTest (showSql = true )
20
+ @ Transactional (propagation = Propagation .NOT_SUPPORTED )
19
21
@ ContextConfiguration (initializers = PostgreSQLContextInitializer .class )
20
22
@ AutoConfigureTestDatabase (replace = AutoConfigureTestDatabase .Replace .NONE )
21
23
public class QueuedWorkflowRepositoryTest {
22
24
23
25
@ Autowired QueuedWorkflowRepository repository ;
24
26
25
- @ Transactional
26
27
@ Test
27
28
public void deleteQueuedWorkflowByRetrievedFromTest () {
28
29
You can’t perform that action at this time.
0 commit comments