Skip to content

Commit b1f440f

Browse files
committed
added assertion, updated documentation
1 parent 7ff8542 commit b1f440f

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
### Updates from version 1.5.7 to 1.5.8
2+
* added support for NOAA NDBC insitu data
23
* added support for Windsat Coriolis data
34
* added conda environment
45
* extended workflow to run without scheduler on plain console

MMS_Manual_v_1_5.pdf

30.4 KB
Binary file not shown.

core/src/test/java/com/bc/fiduceo/reader/insitu/ndbc/NdbcSMReaderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ record = reader.parseLine(line, calendar);
9494
public void testGetVariables() throws InvalidRangeException, IOException {
9595
final List<Variable> variables = reader.getVariables();
9696

97-
//assertEquals(0, variables.size());
97+
assertEquals(22, variables.size());
9898
Variable variable = variables.get(0);
9999
assertEquals("station_id", variable.getShortName());
100100
assertEquals(DataType.STRING, variable.getDataType());

0 commit comments

Comments
 (0)