Fix unit test

* BadURIsStopPageParsingSelfTest.java
    update expected URIs to match H2 branch / fixed code
This commit is contained in:
gojomo
2009-05-15 00:27:27 +00:00
parent a84e5b5dca
commit 81a9a9f0f3
@@ -46,14 +46,14 @@ public class BadURIsStopPageParsingSelfTest extends SelfTestBase
final private static Set<String> EXPECTED = Collections.unmodifiableSet(
new HashSet<String>(Arrays.asList(new String[] {
"index.html", "goodone.html", "goodthree.html", "one.html",
"two.html", "three.html", "robots.txt", "goodtwo.html",
"two.html", "three.html", "robots.txt",
"cata;pgs-new.html", "www.loc.gov/rr/european/egw/polishex.html"
})));
@Override
protected void verify() throws Exception {
Set<String> files = filesInArcs();
assertTrue(EXPECTED.equals(files));
assertEquals("URIs retrieved mismatch expected",EXPECTED,files);
}