Attempt to make URL comparison windoze proof

pull/165/head
Dave Syer 11 years ago
parent c78973e375
commit 99fd32d408

@ -103,7 +103,7 @@ public class ExplodedArchiveTests {
@Test
public void getUrl() throws Exception {
URL url = this.archive.getUrl();
assertThat(url, equalTo(this.rootFolder.toURI().toURL()));
assertThat(new File(url.toURI()), equalTo(new File(this.rootFolder.toURI())));
}
@Test

Loading…
Cancel
Save