You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rz...@apache.org on 2021/06/10 19:45:00 UTC

[tomee] branch master updated: Fixes typo in ReloadableEntityManagerFactoryTest which breaks the test with OpenJPA 3.2.0

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

rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/master by this push:
     new 66de40e  Fixes typo in ReloadableEntityManagerFactoryTest which breaks the test with OpenJPA 3.2.0
66de40e is described below

commit 66de40e24e9f6ffff14c69a6b7acf91759ccccaa
Author: Richard Zowalla <rz...@apache.org>
AuthorDate: Thu Jun 10 21:41:50 2021 +0200

    Fixes typo in ReloadableEntityManagerFactoryTest which breaks the test with OpenJPA 3.2.0
    
    (cherry picked from commit 0a18103f9c670b1fee0739a8ff1ec97ed6b963a8)
---
 .../apache/openejb/persistence/ReloadableEntityManagerFactoryTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/container/openejb-core/src/test/java/org/apache/openejb/persistence/ReloadableEntityManagerFactoryTest.java b/container/openejb-core/src/test/java/org/apache/openejb/persistence/ReloadableEntityManagerFactoryTest.java
index e133e34..c274f11 100644
--- a/container/openejb-core/src/test/java/org/apache/openejb/persistence/ReloadableEntityManagerFactoryTest.java
+++ b/container/openejb-core/src/test/java/org/apache/openejb/persistence/ReloadableEntityManagerFactoryTest.java
@@ -46,7 +46,7 @@ public class ReloadableEntityManagerFactoryTest {
         unit.addClass(MyEntity.class);
         unit.setProperty("openjpa.jdbc.SynchronizeMappings", "buildSchema(ForeignKeys=true)");
         unit.getProperties().setProperty("openjpa.RuntimeUnenhancedClasses", "supported");
-        unit.getProperties().setProperty("openjpa.DatCache", "false");
+        unit.getProperties().setProperty("openjpa.DataCache", "false");
         unit.setExcludeUnlistedClasses(true);
 
         final Persistence persistence = new org.apache.openejb.jee.jpa.unit.Persistence(unit);