Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/SecondarytableHibernateAction.java')
-rwxr-xr-xtests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/SecondarytableHibernateAction.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/SecondarytableHibernateAction.java b/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/SecondarytableHibernateAction.java
index 32857e26f..a9a78e2fb 100755
--- a/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/SecondarytableHibernateAction.java
+++ b/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/SecondarytableHibernateAction.java
@@ -44,9 +44,8 @@ public class SecondarytableHibernateAction extends AbstractTestAction {
private static final byte[] PHOTO = new byte[64 * 1024];
- private static final String VERIFICATION_QUERY =
- "SELECT * FROM PERSON as A INNER JOIN PERSON_ADDRESS as B ON A.ID = B.ID "
- + "INNER JOIN PERSON_PHOTO as C ON A.ID = C.ID";
+ private static final String VERIFICATION_QUERY = "SELECT * FROM PERSON as A INNER JOIN PERSON_ADDRESS as B ON A.ID = B.ID "
+ + "INNER JOIN PERSON_PHOTO as C ON A.ID = C.ID";
public SecondarytableHibernateAction() {
super(SecondarytablehibernatePackage.eINSTANCE);

Back to the top