jetty-9: reverted JUnit to 4.8.1; trying to upgrade it breaks the whole build.
This commit is contained in:
parent
ebdab22a63
commit
be865fa191
|
@ -43,7 +43,7 @@ public class ResourceHandlerTest
|
|||
private static ResourceHandler _resourceHandler;
|
||||
|
||||
@BeforeClass
|
||||
public void setUp() throws Exception
|
||||
public static void setUp() throws Exception
|
||||
{
|
||||
_server = new Server();
|
||||
_connector = new ServerConnector(_server);
|
||||
|
@ -58,7 +58,7 @@ public class ResourceHandlerTest
|
|||
}
|
||||
|
||||
@AfterClass
|
||||
public void tearDown() throws Exception
|
||||
public static void tearDown() throws Exception
|
||||
{
|
||||
_server.stop();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue