File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/test/java/org/javawebstack/orm/test Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 11package org .javawebstack .orm .test .querybuilding ;
22
3- import org .atteo .evo .inflector .English ;
43import org .javawebstack .orm .Model ;
54import org .javawebstack .orm .ORM ;
65import org .javawebstack .orm .Repo ;
@@ -55,7 +54,7 @@ void testOneWordAlreadyInPluralDoesntWork() throws ORMConfigurationException {
5554
5655 @ Test
5756 void testOverwrittenTableName () throws ORMConfigurationException {
58- String query = getBaseQuery (OverwritteTableName .class );
57+ String query = getBaseQuery (OverwrittenTableName .class );
5958 assertTrue (query .contains ("FROM `oVer_writtenValue`" ));
6059 }
6160
Original file line number Diff line number Diff line change 88 * This class overwrites the model name to a seemingly random word to test multiple cases at once.
99 */
1010@ Table ("oVer_writtenValue" )
11- public class OverwritteTableName extends Model {
11+ public class OverwrittenTableName extends Model {
1212 @ Column
1313 int id ;
1414}
You can’t perform that action at this time.
0 commit comments