SGF-473 - Fix CI build test failures.

(cherry picked from commit adaf6903d7a177dc63fff888121cd9060e949aba)
Signed-off-by: John Blum <jblum@pivotal.io>
This commit is contained in:
John Blum
2016-02-17 00:30:03 -08:00
parent c038627b5f
commit 90135855c1
3 changed files with 21 additions and 18 deletions

View File

@@ -39,9 +39,9 @@ import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.gemstone.gemfire.cache.DataPolicy;
import com.gemstone.gemfire.cache.GemFireCache;
import com.gemstone.gemfire.cache.Region;
import com.gemstone.gemfire.cache.RegionAttributes;
import com.gemstone.gemfire.cache.client.ClientCache;
import com.gemstone.gemfire.cache.client.ClientRegionShortcut;
/**
@@ -90,7 +90,7 @@ public class LocalOnlyClientCacheIntegrationTest {
}
@Bean
Properties gemfireProperties(@Value("${spring.gemfire.log.level:config}") String logLevel) {
Properties gemfireProperties(@Value("${spring.gemfire.log.level:warning}") String logLevel) {
Properties gemfireProperties = new Properties();
gemfireProperties.setProperty("name", LocalOnlyClientCacheIntegrationTest.class.getSimpleName());
@@ -111,7 +111,7 @@ public class LocalOnlyClientCacheIntegrationTest {
}
@Bean(name = "Example")
ClientRegionFactoryBean<Long, String> exampleRegion(ClientCache gemfireCache,
ClientRegionFactoryBean<Long, String> exampleRegion(GemFireCache gemfireCache,
RegionAttributes<Long, String> exampleAttributes) {
ClientRegionFactoryBean<Long, String> exampleRegion = new ClientRegionFactoryBean<Long, String>();

View File

@@ -20,17 +20,15 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* @author David Turanski
*
* @author John Blum
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(initializers = GemfireTestApplicationContextInitializer.class)
public class FunctionsWithClientCacheTests {
@Test
public void test() {
//Just make sure this comes up for SGF-186
public void doNothing() {
// Just make sure this comes up for SGF-186.
}
}