Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/test/java/loci/common/utests/LocationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ public void setup() throws IOException {
new Location(validFile.getAbsolutePath()),
new Location(invalidPath),
new Location(tmpDirectory),
new Location("http://www.openmicroscopy.org/site/foo/products/bio-formats"),
new Location("https://www.openmicroscopy.org/site/products/images"),
new Location("https://www.openmicroscopy.org/site/products/images/foo"),
new Location("http://www.openmicroscopy.org/"),
new Location("https://www.openmicroscopy.org/"),
new Location("https://www.openmicroscopy.org/nonexisting"),
new Location(hiddenFile)
};

exists = new boolean[] {
true, false, true, false, true, false, true
true, false, true, true, true, false, true
};

isDirectory = new boolean[] {
Expand All @@ -108,7 +108,7 @@ public void setup() throws IOException {
};

mode = new String[] {
"rw", "", "rw", "", "r", "","rw"
"rw", "", "rw", "r", "r", "","rw"
};

isRemote = new boolean[] {
Expand Down