You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2015/10/08 23:54:32 UTC

[2/2] incubator-geode git commit: Remove invalid test.

Remove invalid test.


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/326a82ab
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/326a82ab
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/326a82ab

Branch: refs/heads/feature/GEODE-189-new
Commit: 326a82abe262692383b96c1bd38052c0e44aa0e6
Parents: 0e87990
Author: Kirk Lund <kl...@pivotal.io>
Authored: Thu Oct 8 14:53:57 2015 -0700
Committer: Kirk Lund <kl...@pivotal.io>
Committed: Thu Oct 8 14:53:57 2015 -0700

----------------------------------------------------------------------
 .../internal/logging/LogServiceIntegrationJUnitTest.java     | 8 --------
 1 file changed, 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/326a82ab/gemfire-core/src/test/java/com/gemstone/gemfire/internal/logging/LogServiceIntegrationJUnitTest.java
----------------------------------------------------------------------
diff --git a/gemfire-core/src/test/java/com/gemstone/gemfire/internal/logging/LogServiceIntegrationJUnitTest.java b/gemfire-core/src/test/java/com/gemstone/gemfire/internal/logging/LogServiceIntegrationJUnitTest.java
index c9d8064..04e45a4 100755
--- a/gemfire-core/src/test/java/com/gemstone/gemfire/internal/logging/LogServiceIntegrationJUnitTest.java
+++ b/gemfire-core/src/test/java/com/gemstone/gemfire/internal/logging/LogServiceIntegrationJUnitTest.java
@@ -204,12 +204,4 @@ public class LogServiceIntegrationJUnitTest {
     assertThat(LogService.getConfiguration().getConfigurationSource().toString()).contains(CLI_CONFIG_FILE_NAME);
     assertThat(LogService.isUsingGemFireDefaultConfig()).isFalse();
   }
-
-  @Test
-  public void shouldUsCliConfigIfCliConfigIsSpecifiedViaClasspathWithQuotes() throws Exception {
-    System.setProperty(ConfigurationFactory.CONFIGURATION_FILE_PROPERTY, "\"classpath:"+CLI_CONFIG_FILE_NAME+"\"");
-    
-    assertThat(LogService.getConfiguration().getConfigurationSource().toString()).contains(CLI_CONFIG_FILE_NAME);
-    assertThat(LogService.isUsingGemFireDefaultConfig()).isFalse();
-  }
 }