Test case throws declaration fix for Jetty 9.4+

This commit is contained in:
Joakim Erdfelt 2016-10-26 12:07:49 -07:00
parent a7ac269027
commit de1a973321
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,6 @@
package org.eclipse.jetty.quickstart;
import java.io.IOException;
import static org.hamcrest.Matchers.anyOf;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.is;
@ -26,6 +25,7 @@ import static org.hamcrest.Matchers.not;
import static org.junit.Assert.assertThat;
import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URI;
@ -35,7 +35,7 @@ import org.junit.Test;
public class AttributeNormalizerTest
{
@Test
public void testNormalizeOrder() throws MalformedURLException
public void testNormalizeOrder() throws IOException
{
String oldJettyHome = System.getProperty("jetty.home");
String oldJettyBase = System.getProperty("jetty.base");