Skip to content

Commit bf9b147

Browse files
committed
Cleanup tests
1 parent 4100a64 commit bf9b147

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

grails-datastore-gorm-tck/src/main/groovy/grails/gorm/tests/GormDatastoreSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ abstract class GormDatastoreSpec extends Specification {
2626
Book, ChildEntity, City, ClassWithListArgBeforeValidate, ClassWithNoArgBeforeValidate,
2727
ClassWithOverloadedBeforeValidate, CommonTypes, Country, EnumThing, Face, Highway,
2828
Location, ModifyPerson, Nose, OptLockNotVersioned, OptLockVersioned, Person, PersonEvent,
29-
Pet, PetType, Plant, PlantCategory, Publication, Task, TestEntity, ClassWithHungarianNotation]
29+
Pet, PetType, Plant, PlantCategory, Publication, Task, TestEntity]
3030

3131
@Shared Class setupClass
3232

grails-datastore-gorm-test/src/test/groovy/org/grails/datastore/gorm/DynamicFinderHungarianNotationSpec.groovy

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,8 @@ class DynamicFinderHungarianNotationSpec extends GormDatastoreSpec {
1616
ClassWithHungarianNotation.countByISize(2) == 1
1717
ClassWithHungarianNotation.findByISize(2).iSize == 2
1818
}
19+
20+
List getDomainClasses() {
21+
[ClassWithHungarianNotation]
22+
}
1923
}

grails-datastore-gorm-test/src/test/groovy/org/grails/datastore/gorm/ListOrderByHungarianNotationSpec.groovy

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,8 @@ class ListOrderByHungarianNotationSpec extends GormDatastoreSpec {
1616
then:
1717
ClassWithHungarianNotation.listOrderByISize(order: 'desc')*.iSize == [3, 2]
1818
}
19+
20+
List getDomainClasses() {
21+
[ClassWithHungarianNotation]
22+
}
1923
}

0 commit comments

Comments
 (0)