We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0ca4aa2 + be9fa5b commit db4da5aCopy full SHA for db4da5a
test/test_conversion.jl
@@ -28,9 +28,9 @@ NCDatasets.write(tmp_filename,ds)
28
dsnc = NCDatasets.Dataset(tmp_filename)
29
@test ds["number"][:] == dsnc["number"][:]
30
31
-@test CDM.dims(ds) == CDM.dims(dsnc)
32
-@test CDM.attribs(ds) == CDM.attribs(dsnc)
33
-@test CDM.groups(ds) == CDM.groups(dsnc)
+@test OrderedDict(CDM.dims(ds)) == OrderedDict(CDM.dims(dsnc))
+@test OrderedDict(CDM.attribs(ds)) == OrderedDict(CDM.attribs(dsnc))
+@test OrderedDict(CDM.groups(ds)) == OrderedDict(CDM.groups(dsnc))
34
35
36
close(dsnc)
0 commit comments