Attempt to make URL comparison windoze proof
This commit is contained in:
parent
c78973e375
commit
99fd32d408
|
|
@ -103,7 +103,7 @@ public class ExplodedArchiveTests {
|
||||||
@Test
|
@Test
|
||||||
public void getUrl() throws Exception {
|
public void getUrl() throws Exception {
|
||||||
URL url = this.archive.getUrl();
|
URL url = this.archive.getUrl();
|
||||||
assertThat(url, equalTo(this.rootFolder.toURI().toURL()));
|
assertThat(new File(url.toURI()), equalTo(new File(this.rootFolder.toURI())));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue