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/issues/SecondarytableInheritanceAction.java')
-rwxr-xr-xtests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/issues/SecondarytableInheritanceAction.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/issues/SecondarytableInheritanceAction.java b/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/issues/SecondarytableInheritanceAction.java
index 9ee5b357b..8c90f13f3 100755
--- a/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/issues/SecondarytableInheritanceAction.java
+++ b/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/issues/SecondarytableInheritanceAction.java
@@ -42,9 +42,8 @@ public class SecondarytableInheritanceAction extends AbstractTestAction {
private static final byte[] PHOTO = new byte[64 * 1024];
- private static final String VERIFICATION_QUERY =
- "SELECT * FROM GENERIC 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 GENERIC 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 SecondarytableInheritanceAction() {
super(SecondaryPackage.eINSTANCE);

Back to the top