Skip to content

Commit dbc6d8b

Browse files
committed
spotless
1 parent 4036da5 commit dbc6d8b

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

cdm/core/src/test/java/ucar/nc2/ncml/TestNcmlReadersCompare.java

+7-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package ucar.nc2.ncml;
66

77
import static org.junit.Assert.fail;
8-
98
import java.io.File;
109
import java.io.FileFilter;
1110
import java.io.IOException;
@@ -34,8 +33,7 @@ public class TestNcmlReadersCompare {
3433
public static Collection<Object[]> getTestParameters() {
3534
Collection<Object[]> filenames = new ArrayList<>();
3635
try {
37-
TestDir.actOnAllParameterized(TestNcMLRead.topDir, new MyFileFilter(), filenames,
38-
true);
36+
TestDir.actOnAllParameterized(TestNcMLRead.topDir, new MyFileFilter(), filenames, true);
3937
} catch (IOException e) {
4038
filenames.add(new Object[] {e.getMessage()});
4139
}
@@ -73,9 +71,12 @@ public boolean accept(File pathname) {
7371
String name = pathname.getName();
7472

7573
// Temporarily remove these until they're working
76-
if (name.contains("aggSynthetic.xml")) return false;
77-
if (name.contains("aggUnionRename.xml")) return false;
78-
if (name.contains("testAggFmrc")) return false;
74+
if (name.contains("aggSynthetic.xml"))
75+
return false;
76+
if (name.contains("aggUnionRename.xml"))
77+
return false;
78+
if (name.contains("testAggFmrc"))
79+
return false;
7980
return name.endsWith("ml");
8081
}
8182
}

opendap/src/test/java/ucar/nc2/dods/TestUserProblems.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ public void testGrid() throws IOException, InvalidRangeException {
5858
}
5959

6060
// ucar.nc2.dods.TestUserProblems > testNomads STANDARD_ERROR
61-
// opendap.dap.DAP2Exception: Method failed:HTTP/1.1 403 Forbidden on URL= http://nomads.ncdc.noaa.gov/thredds/dodsC/cfsr1hr/200912/tmp2m.gdas.200912.grb2.dods?Temperature[0:1:744][0:1:0][0:1:575][0:1:1151]
61+
// opendap.dap.DAP2Exception: Method failed:HTTP/1.1 403 Forbidden on URL=
62+
// http://nomads.ncdc.noaa.gov/thredds/dodsC/cfsr1hr/200912/tmp2m.gdas.200912.grb2.dods?Temperature[0:1:744][0:1:0][0:1:575][0:1:1151]
6263
// @org.junit.Test
6364
public void testNomads() throws InvalidRangeException {
6465
// This server is running TDS v4.2, and there appears to be an issue with encoded urls?

0 commit comments

Comments
 (0)