Skip to content

Commit e193d66

Browse files
committed
Remove loose typing of attr dict in test
1 parent bfb0df3 commit e193d66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/datasets.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ end
4141
function test_write(T)
4242
p = tempname()
4343
ds = create_empty(T, p)
44-
add_var(ds, 0.5:1:9.5, "lon", ("lon",), Dict{String,Any}("units"=>"degrees_east"))
45-
add_var(ds, 20:-1.0:1, "lat", ("lat",), Dict{String,Any}("units"=>"degrees_north"))
44+
add_var(ds, 0.5:1:9.5, "lon", ("lon",), Dict("units"=>"degrees_east"))
45+
add_var(ds, 20:-1.0:1, "lat", ("lat",), Dict("units"=>"degrees_north"))
4646
v = add_var(ds, Float32, "tas", (10,20), ("lon", "lat"), Dict{String,Any}("units"=>"Celsius"))
4747

4848
v[:,:] = collect(reshape(1:200, 10, 20))

0 commit comments

Comments
 (0)