Skip to content

Commit

Permalink
Don't let OpenJPA deal with mock classes in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoellnitz committed Mar 22, 2016
1 parent f6c16b1 commit b8e9dbe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions jpa/test/guicy/tangram.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Copyright 2015 Martin Goellnitz
#
#
# Copyright 2015-2016 Martin Goellnitz
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
Expand All @@ -16,4 +16,4 @@
#

# bean factory base packages
basePackages=org.tangram
basePackages=org.tangram.jpa,org.tangram.mutable
4 changes: 2 additions & 2 deletions jpa/test/org/tangram/jpa/test/JpaContentTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ protected void setPeers(BaseInterface base, SubInterface peer) {

@Override
protected int getNumberOfAllClasses() {
return 16;
return 9;
}


@Override
protected int getNumberOfClasses() {
return 5;
return 4;
}


Expand Down

0 comments on commit b8e9dbe

Please sign in to comment.