DBZ-2288 Rethrow exception in test

This commit is contained in:
Jiri Pechanec 2020-07-16 08:51:09 +02:00
parent 55ba8b8b89
commit f06a14f1da

View File

@ -1147,7 +1147,7 @@ public void exportedSnapshotShouldNotSkipRecordOfParallelTx() throws Exception {
pgConnection.commit();
}
catch (Exception e) {
e.printStackTrace();
throw new IllegalStateException(e);
}
inserted.set(true);
}
@ -1199,7 +1199,7 @@ public void exportedSnapshotShouldNotSkipRecordOfParallelTxPgoutput() throws Exc
pgConnection.commit();
}
catch (Exception e) {
e.printStackTrace();
throw new IllegalStateException(e);
}
inserted.set(true);
}