Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyajohnson committed Dec 6, 2023
1 parent 7b737a6 commit d1a1004
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import thredds.test.util.TestOnLocalServer;
import thredds.util.ContentType;
import ucar.ma2.Array;
import ucar.ma2.MAMath;
import ucar.nc2.NetcdfFile;
import ucar.nc2.NetcdfFiles;
import ucar.nc2.Variable;
Expand Down Expand Up @@ -37,7 +38,7 @@ public void testNCSSWithEnhancements() throws IOException {
assertThat(enhancedVar.findAttribute("add_offset")).isNull();
final Array values1 = enhancedVar.read();
final Array values2 = orgVar.read();
MAMath.nearlyEquals(values1, values2);
MAMath.nearlyEquals(values1, values2);
}
}

Expand Down

0 comments on commit d1a1004

Please sign in to comment.