Skip to content

Commit

Permalink
Fix import in JmsDslKotlinTests.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed May 1, 2018
1 parent d9fb0c6 commit 091e94e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -78,7 +78,8 @@ public class JdbcMessageStoreTests {

@Before
public void init() {
messageStore = new JdbcMessageStore(dataSource);
this.messageStore = new JdbcMessageStore(dataSource);
this.messageStore.expireMessageGroups(-1);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import org.springframework.context.annotation.Configuration
import org.springframework.integration.config.EnableIntegration
import org.springframework.integration.dsl.IntegrationFlow
import org.springframework.integration.dsl.IntegrationFlows
import org.springframework.integration.dsl.MessageChannels
import org.springframework.integration.dsl.channel.MessageChannels
import org.springframework.integration.support.MessageBuilder
import org.springframework.messaging.MessageChannel
import org.springframework.messaging.PollableChannel
Expand Down

0 comments on commit 091e94e

Please sign in to comment.