summaryrefslogtreecommitdiffstats
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dao/EmployeePersistenceTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dao/EmployeePersistenceTest.java b/src/test/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dao/EmployeePersistenceTest.java
index 1202641..5536c1c 100644
--- a/src/test/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dao/EmployeePersistenceTest.java
+++ b/src/test/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dao/EmployeePersistenceTest.java
@@ -136,7 +136,7 @@ public class EmployeePersistenceTest extends JdbcTestCase {
employeePersistence.add(validEmployee);
- String[] excludedColumnsEmployee = new String[] {"VERSION"};
+ String[] excludedColumnsEmployee = new String[] {"VERSION", "ID"};
String tableEmployee = "EMPLOYEE";
// load actual and expected data set
@@ -164,7 +164,7 @@ public class EmployeePersistenceTest extends JdbcTestCase {
employeePersistence.add(validEmployee);
- String[] excludedColumns = new String[] {"E_VERSION", "V_ID"};
+ String[] excludedColumns = new String[] {"E_VERSION", "V_ID", "E_ID"};
String table = "EMP_JOIN";
String expectedXmlDataFileName = "testAddValidEmployeeJoin_expected.xml";