You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ds...@apache.org on 2019/01/17 22:49:25 UTC

[geode] branch feature/GEODE-6289 updated: changed test to not use null as the pdxClassName

This is an automated email from the ASF dual-hosted git repository.

dschneider pushed a commit to branch feature/GEODE-6289
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/feature/GEODE-6289 by this push:
     new 1d6e307  changed test to not use null as the pdxClassName
1d6e307 is described below

commit 1d6e307262e55e8eb98007ef3fb0bfbcf5b55f44
Author: Darrel Schneider <ds...@pivotal.io>
AuthorDate: Thu Jan 17 14:48:57 2019 -0800

    changed test to not use null as the pdxClassName
---
 .../org/apache/geode/connectors/jdbc/JdbcLoaderIntegrationTest.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/geode-connectors/src/acceptanceTest/java/org/apache/geode/connectors/jdbc/JdbcLoaderIntegrationTest.java b/geode-connectors/src/acceptanceTest/java/org/apache/geode/connectors/jdbc/JdbcLoaderIntegrationTest.java
index b9295e8..aba445d 100644
--- a/geode-connectors/src/acceptanceTest/java/org/apache/geode/connectors/jdbc/JdbcLoaderIntegrationTest.java
+++ b/geode-connectors/src/acceptanceTest/java/org/apache/geode/connectors/jdbc/JdbcLoaderIntegrationTest.java
@@ -205,7 +205,8 @@ public abstract class JdbcLoaderIntegrationTest {
   @Test
   public void verifySimpleMiss() throws Exception {
     createEmployeeTable();
-    Region<String, PdxInstance> region = createRegionWithJDBCLoader(REGION_TABLE_NAME, null);
+    Region<String, PdxInstance> region =
+        createRegionWithJDBCLoader(REGION_TABLE_NAME, "pdxClassName");
     PdxInstance pdx = region.get("1");
     assertThat(pdx).isNull();
   }