This commit is contained in:
jamesagnew 2015-06-21 00:12:33 -04:00
parent 7acacda758
commit 6907009cab
2 changed files with 6 additions and 5 deletions

View File

@ -301,6 +301,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<runOrder>alphabetical</runOrder>
<reuseForks>false</reuseForks>
</configuration>
</plugin>
<plugin>

View File

@ -10,11 +10,11 @@ public class BaseJpaTest {
@AfterClass
public static void afterClassShutdownDerby() throws SQLException {
try {
DriverManager.getConnection("jdbc:derby:memory:myUnitTestDB;drop=true");
} catch (SQLNonTransientConnectionException e) {
// expected.. for some reason....
}
// try {
// DriverManager.getConnection("jdbc:derby:memory:myUnitTestDB;drop=true");
// } catch (SQLNonTransientConnectionException e) {
// // expected.. for some reason....
// }
}
}