Author: mikedd
Date: Wed Aug 10 19:45:22 2011
New Revision: 1156338
URL: http://svn.apache.org/viewvc?rev=1156338&view=rev
Log:
OPENJPA-2038: remove hard coded property from testcase
Modified:
openjpa/branches/2.1.x/openjpa-jdbc/src/test/java/org/apache/openjpa/jdbc/sql/TestDBDictionaryGeneratedSQL.java
Modified: openjpa/branches/2.1.x/openjpa-jdbc/src/test/java/org/apache/openjpa/jdbc/sql/TestDBDictionaryGeneratedSQL.java
URL: http://svn.apache.org/viewvc/openjpa/branches/2.1.x/openjpa-jdbc/src/test/java/org/apache/openjpa/jdbc/sql/TestDBDictionaryGeneratedSQL.java?rev=1156338&r1=1156337&r2=1156338&view=diff
==============================================================================
--- openjpa/branches/2.1.x/openjpa-jdbc/src/test/java/org/apache/openjpa/jdbc/sql/TestDBDictionaryGeneratedSQL.java
(original)
+++ openjpa/branches/2.1.x/openjpa-jdbc/src/test/java/org/apache/openjpa/jdbc/sql/TestDBDictionaryGeneratedSQL.java
Wed Aug 10 19:45:22 2011
@@ -42,7 +42,6 @@ public class TestDBDictionaryGeneratedSQ
});
DBDictionary dict = new DBDictionary();
- dict.tableLengthIncludesSchema=false;
dict.setConfiguration(mockConfiguration);
dict.maxTableNameLength = 10;
@@ -74,7 +73,6 @@ public class TestDBDictionaryGeneratedSQ
DBDictionary dict = new DBDictionary();
dict.setConfiguration(mockConfiguration);
- dict.tableLengthIncludesSchema=false;
dict.maxTableNameLength = 10;
Table table = new Table();
@@ -105,7 +103,6 @@ public class TestDBDictionaryGeneratedSQ
DBDictionary dict = new DBDictionary();
dict.setConfiguration(mockConfiguration);
- dict.tableLengthIncludesSchema=false;
dict.maxTableNameLength = 12;
Table table = new Table();
|